1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.iamberry.rst.faces.cm;
- import com.iamberry.rst.core.cm.CmRelation;
- import java.util.List;
- /**
- * 售后处理接口
- * @author
- * @Date 2018-12-28
- */
- public interface CmRelationService {
- /**
- * 获取集合
- * @param cmRelation
- * @return List
- */
- List<CmRelation> getCmRelationList(CmRelation cmRelation);
- /**
- * 查询单条数据
- * @param id
- * @return cmRelation
- */
- CmRelation getCmRelationById(Integer id);
- /**
- * 增加数据
- * @param cmRelation
- * @return Integer
- */
- Integer save(CmRelation cmRelation);
- /**
- * 修改数据
- * @param cmRelation
- * @return Integer
- */
- Integer update(CmRelation cmRelation);
- /**
- * 删除数据
- * @param id
- * @return Integer
- */
- Integer delete(Integer id);
- }
|