1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.changhong.epc.parsing.mapper.tenant;
|
| import java.util.List;
|
| import com.changhong.epc.bean.tenant.bill.RuleCheckMsg;
| import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
|
| public interface RuleCheckMsgMapper extends MybatisBaseMapper<RuleCheckMsg>{
|
| /**
| * 查询未处理检查返回数据
| * @return List<RuleCheckMsg>
| */
| List<RuleCheckMsg> selectUntreatedRuleCheckMsg();
| }
|
|