tpzlservice.java
来自「使用WEBWORK,SPRING,HIBERNATE编写的简单的添加」· Java 代码 · 共 24 行
JAVA
24 行
/**
*文件功能:
*/
package com.tech.service;
import java.util.List;
import com.tech.model.Tpzl;
import com.common.service.BaseService;
import com.tech.model.Tpzl;
import com.tech.model.query.Primary;
import com.common.exception.BusinessException;
/**
* @作者 徐建协
* @日期 2009-03-20
*/
public interface TpzlService extends BaseService<Tpzl,Long>{
public void saveEntity(Tpzl[] array) throws BusinessException;
public List<Primary> getTpzlList(Long tid,Long tplybz);
public List<Primary> getTpzlList(Long tid,Long tplybz,Long tplxbz);
public List<Primary> getTpzlList(Long tid,Long tplybz,Long tplxbz,Long fr);
public void removeHyxx(Tpzl tpzl) throws BusinessException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?