12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.iamberry.rst.faces.dm;
- import com.iamberry.rst.core.dm.CooperationAgree;
- import java.util.List;
- /**
- * 合作协议接口
- * @author xm
- * @Date 2019-07-19
- */
- public interface CooperationAgreeService {
- /**
- * 获取集合
- * @param cooperationAgree
- * @return List
- */
- List<CooperationAgree> getCooperationAgreeList(CooperationAgree cooperationAgree);
- /**
- * 查询单条数据
- * @param id
- * @return cooperationAgree
- */
- CooperationAgree getCooperationAgreeById(Integer id);
- /**
- * 增加数据
- * @param cooperationAgree
- * @return Integer
- */
- Integer save(CooperationAgree cooperationAgree);
- /**
- * 修改数据
- * @param cooperationAgree
- * @return Integer
- */
- Integer update(CooperationAgree cooperationAgree);
- /**
- * 删除数据
- * @param id
- * @return Integer
- */
- Integer delete(Integer id);
- }
|