BusinessRepository.java
525 Bytes
package com.bsth.repository;
import org.springframework.stereotype.Repository;
import com.bsth.entity.Business;
/**
*
* @Interface: BusinessRepository(公司Repository数据持久层接口)
*
* @Extends : BaseRepository
*
* @Description: TODO(公司Repository数据持久层接口)
*
* @Author bsth@lq
*
* @Date 2016-05-03 9:21:17
*
* @Version 公交调度系统BS版 0.1
*
*/
@Repository
public interface BusinessRepository extends BaseRepository<Business, Integer> {
}