fuliqi
2024-03-13 2f8353545b2e48417f8428632f76a9c470964e2d
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> {
 
}