JxglPerformanceRatingMapper.java 422 Bytes
Newer Older
1
package cn.timer.api.dao.jxgl;
2 3
import java.util.List;

4 5 6 7 8 9 10 11 12 13 14 15 16
import org.springframework.stereotype.Repository;

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

import cn.timer.api.bean.jxgl.JxglPerformanceRating;

/**
*  绩效等级
* @author Tang 2020-05-26
*/
@Repository
public interface JxglPerformanceRatingMapper extends BaseMapper<JxglPerformanceRating> {

17
	int insertList(List<JxglPerformanceRating> list);
18 19

}