📄 iservicebiz.java
字号:
package com.t53.crm4.serve.biz;
import java.util.Date;
import java.util.List;
import com.t53.crm4.common.PaginationBean;
import com.t53.crm4.common.entity.BasDict;
import com.t53.crm4.common.entity.CstCustomer;
import com.t53.crm4.common.entity.CstService;
import com.t53.crm4.common.entity.SysUser;
public interface IServiceBiz {
/**
* 添加服务
* @param cstService
* @return 服务编号
*/
public Long addService(CstService cstService);
public List<SysUser> findByRoleId(int id);
public List<CstService> findByPage(CstService cstService,PaginationBean pageBean,String beforDate,String afterDate);
public List<BasDict> findAllsvrType();
public List<CstService> findAllStatus();
public CstService findBySvrId(Long id);
public int update(CstService cstService);
public int updateResult(CstService cstService);
public void deleteBySvrId(Long svrId);
public int modify(CstService cstService);
public List<CstCustomer> findAllCust();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -