| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package cn.com.lzt.contractpayment.service;
- import cn.com.lzt.contractpayment.entity.ContractPaymentEntity;
- import cn.com.lzt.contractinvoice.entity.ContractInvoiceEntity;
- import java.util.List;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface ContractPaymentServiceI extends CommonService{
-
- public <T> void delete(T entity);
- /**
- * 添加一对多
- *
- */
- public void addMain(ContractPaymentEntity contractPayment,
- List<ContractInvoiceEntity> contractInvoiceList) ;
- /**
- * 修改一对多
- *
- */
- public void updateMain(ContractPaymentEntity contractPayment,
- List<ContractInvoiceEntity> contractInvoiceList);
- public void delMain (ContractPaymentEntity contractPayment);
-
- /**
- * 默认按钮-sql增强-新增操作
- * @param id
- * @return
- */
- public boolean doAddSql(ContractPaymentEntity t);
- /**
- * 默认按钮-sql增强-更新操作
- * @param id
- * @return
- */
- public boolean doUpdateSql(ContractPaymentEntity t);
- /**
- * 默认按钮-sql增强-删除操作
- * @param id
- * @return
- */
- public boolean doDelSql(ContractPaymentEntity t);
- }
|