KqglAssoTeshuMapper.java 507 Bytes
Newer Older
ilal committed
1 2
package cn.timer.api.dao.kqmk;

ilal committed
3 4
import java.util.List;

ilal committed
5 6
import org.springframework.stereotype.Repository;

ilal committed
7 8
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

ilal committed
9 10 11 12 13 14 15 16 17
import cn.timer.api.bean.kqmk.KqglAssoTeshu;

/**
 * 特殊日期表
 * 
 * @author LAL 2020-05-11
 */
@Repository
public interface KqglAssoTeshuMapper extends BaseMapper<KqglAssoTeshu> {
ilal committed
18 19
	
	int insertKqglAssoTeshuList(List<KqglAssoTeshu> kqglassoteshu);
lal committed
20
	
lal committed
21
	List<KqglAssoTeshu> ShouldSpecialDatessetByKqzid(int kqzid,String tsrq,int type);
ilal committed
22 23

}