zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.changhong.epc.tenant.mapper.tenant.bill;
 
import java.util.List;
 
import com.changhong.epc.bean.tenant.bill.RuleCheckMsg;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface RuleCheckMsgMapper extends MybatisBaseMapper<RuleCheckMsg>{
 
    /**
     * 查询未处理检查返回数据
     * @return List<RuleCheckMsg>
     */
    List<RuleCheckMsg> selectUntreatedRuleCheckMsg();
 
    Integer updateStrat(@Param("orderCode") String orderCode);
}