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);
|
}
|