对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.Utils.PageInfo; |
| | | import com.gk.firework.Domain.Vo.WarnContentVo; |
| | | import com.gk.firework.Domain.WarnContentInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface WarnContentService extends IService<WarnContentInfo> { |
| | | |
| | | void selectStockDataGrid(PageInfo pageInfo); |
| | | |
| | | void selectPurchaseDataGrid(PageInfo pageInfo); |
| | | |
| | | WarnContentInfo selectByWarn(String warntype, String warnlevel, Long customer, String warncontent); |
| | | |
| | | WarnContentInfo selectByEnterpriseWarn(String warntype, String warnlevel, Long enterpriseid, String warncontent); |
| | | |
| | | List<WarnContentVo> selectNeedMail(String starttime, String endtime); |
| | | |
| | | List<WarnContentVo> selectIsNotMend(); |
| | | |
| | | void selectWarningDataGrid(PageInfo pageInfo); |
| | | |
| | | WarnContentInfo selectByWarnTypeAndContent(String type, String content); |
| | | |
| | | void saveBatchInfo(List<WarnContentInfo> warnContentInfos); |
| | | |
| | | } |