JxglAppraisalTMapper.java 374 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5
package cn.timer.api.dao.jxgl;
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

6
import cn.timer.api.bean.jxgl.JxglAppraisalT;
yuquan.zhu committed
7 8

/**
9 10
*  考核模板
* @author Tang 2020-05-26
yuquan.zhu committed
11 12
*/
@Repository
13
public interface JxglAppraisalTMapper extends BaseMapper<JxglAppraisalT> {
yuquan.zhu committed
14

15 16
	JxglAppraisalT selectDetailById(Integer id);

yuquan.zhu committed
17 18 19


}