fuliqi
2024-03-19 e34df92d59f0df626c96ac400759d596364e0889
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.platform.mapper;
 
import com.ycl.platform.domain.entity.CheckRule;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.vo.CheckRuleVO;
import com.ycl.platform.domain.form.CheckRuleForm;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 考核规则 Mapper 接口
 *
 * @author xp
 * @since 2024-03-06
 */
@Mapper
public interface CheckRuleMapper extends BaseMapper<CheckRule> {
 
}