CmRelationService.java 855 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.iamberry.rst.faces.cm;
  2. import com.iamberry.rst.core.cm.CmRelation;
  3. import java.util.List;
  4. /**
  5. * 售后处理接口
  6. * @author
  7. * @Date 2018-12-28
  8. */
  9. public interface CmRelationService {
  10. /**
  11. * 获取集合
  12. * @param cmRelation
  13. * @return List
  14. */
  15. List<CmRelation> getCmRelationList(CmRelation cmRelation);
  16. /**
  17. * 查询单条数据
  18. * @param id
  19. * @return cmRelation
  20. */
  21. CmRelation getCmRelationById(Integer id);
  22. /**
  23. * 增加数据
  24. * @param cmRelation
  25. * @return Integer
  26. */
  27. Integer save(CmRelation cmRelation);
  28. /**
  29. * 修改数据
  30. * @param cmRelation
  31. * @return Integer
  32. */
  33. Integer update(CmRelation cmRelation);
  34. /**
  35. * 删除数据
  36. * @param id
  37. * @return Integer
  38. */
  39. Integer delete(Integer id);
  40. }