📄 iservicedao.java
字号:
package com.t53.crm4.serve.dao;
import java.util.Date;
import java.util.List;
import com.t53.crm4.common.dao.IGenericDao;
import com.t53.crm4.common.entity.CstService;
public interface IServiceDao extends IGenericDao<CstService, Long> {
/**
* 添加服务
*
* @param cstService
* @return 该条服务的ID
*/
public Long addService(CstService cstService);
public List<CstService> findByAllot(String hql);
public CstService findById(Long id);
public int update(String hql);
public void deleteBySvrId(CstService cstService);
public List<CstService> findByPagination(final CstService cstService,
final int firstResult, final int maxResult, final Date loDate,
final Date hiDate);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -