XcglAssoGztszMapper.java 484 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package cn.timer.api.dao.xcgl;
import org.springframework.stereotype.Repository;

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

import cn.timer.api.bean.xcgl.XcglAssoGztsz;

/**
*  工资条组-设置
* @author lal 2019-12-12
*/
@Repository
public interface XcglAssoGztszMapper extends BaseMapper<XcglAssoGztsz> {
	
	
	int insertxcglassogztsz(XcglAssoGztsz xcglassogztsz);
	
	int deletexcglassogztsz(String gztyf,int xzzid);
	
	int deletexcglassogztszByxzzid(int xzzid);
}