21 lines
416 B
Java
21 lines
416 B
Java
package com.ailanyin.mapper;
|
|
|
|
import com.ailanyin.model.HxYearDuty;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author ailanyin
|
|
* @version 1.0
|
|
* @since 2021/12/22 0022 下午 14:40
|
|
*/
|
|
public interface HxYearDutyMapper {
|
|
int checkIsExist(HxYearDuty hxYearDuty);
|
|
|
|
List<HxYearDuty> selectList(HxYearDuty hxYearDuty);
|
|
|
|
void updateSelective(HxYearDuty hxYearDuty);
|
|
|
|
void insertSelective(HxYearDuty hxYearDuty);
|
|
}
|