IRmsConsigneeService.java 929 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.steerinfo.dil.service;
  2. import com.steerinfo.framework.service.IBaseService;
  3. import java.util.Date;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  6. import java.util.Map;
  7. /**
  8. * RmsConsigneee服务接口:
  9. * @author generator
  10. * @version 1.0-SNAPSHORT 2021-10-26 05:28
  11. * 类描述
  12. * 修订历史:
  13. * 日期:2021-10-26
  14. * 作者:generator
  15. * 参考:
  16. * 描述:RmsConsigneee服务接口
  17. * @see null
  18. * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
  19. */
  20. public interface IRmsConsigneeService {
  21. /**
  22. * 管理收货客户
  23. * @param mapVal
  24. * @return
  25. */
  26. int operationConsignee(Map<String, Object> mapVal);
  27. /**
  28. * 展示收货客户信息
  29. * @param mapVal
  30. * @return
  31. */
  32. List<Map<String, Object>> getConsigneeList(Map<String, Object> mapVal);
  33. BigDecimal registerConsignee(Map<String, Object> mapVal) throws Exception;
  34. }