IDilNoticeService.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.steerinfo.dil.service;
  2. import com.steerinfo.dil.model.DilNotice;
  3. import java.math.BigDecimal;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * DilNotice服务接口:
  8. * @author generator
  9. * @version 1.0-SNAPSHORT 2021-12-08 02:21
  10. * 类描述
  11. * 修订历史:
  12. * 日期:2021-12-08
  13. * 作者:generator
  14. * 参考:
  15. * 描述:DilNotice服务接口
  16. * @see null
  17. * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
  18. */
  19. public interface IDilNoticeService {
  20. List<Map<String, Object>> getNoticeList(Map<String, Object> mapVal);
  21. int insertNotice(DilNotice dilNotice);
  22. int updateNotice(DilNotice dilNotice);
  23. int deleteNotice(BigDecimal id);
  24. List<Map<String, Object>> getNoticeById(BigDecimal id);
  25. List<Map<String, Object>> getCarrierNoticeList(Map<String, Object> mapVal);
  26. List<Map<String, Object>> getMarketingNoticeList(Map<String, Object> mapVal);
  27. List<Map<String, Object>> getClientNoticeList(Map<String, Object> mapVal);
  28. List<Map<String, Object>> getNewNoticeByPermission(BigDecimal permission);
  29. public List<Map<String,Object>> getNoticeData(String orgcode);
  30. /* List<Map<String,Object>> getCapacityTypeId();
  31. List<Map<String,Object>> getCarrierId();*/
  32. }