package com.steerinfo.dil.service; import com.steerinfo.dil.model.DilNotice; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * DilNotice服务接口: * @author generator * @version 1.0-SNAPSHORT 2021-12-08 02:21 * 类描述 * 修订历史: * 日期:2021-12-08 * 作者:generator * 参考: * 描述:DilNotice服务接口 * @see null * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved. */ public interface IDilNoticeService { List> getNoticeList(Map mapVal); int insertNotice(DilNotice dilNotice); int updateNotice(DilNotice dilNotice); int deleteNotice(BigDecimal id); List> getNoticeById(BigDecimal id); List> getCarrierNoticeList(Map mapVal); List> getMarketingNoticeList(Map mapVal); List> getClientNoticeList(Map mapVal); List> getNewNoticeByPermission(BigDecimal permission); public List> getNoticeData(String orgcode); /* List> getCapacityTypeId(); List> getCarrierId();*/ }