package com.javaweb.geo.mapper;
|
|
import com.javaweb.geo.domain.LaborUnit;
|
import java.util.List;
|
|
/**
|
* 劳务单位Mapper接口
|
*
|
* @author zmk
|
* @date 2022-10-20
|
*/
|
public interface LaborUnitMapper
|
{
|
/**
|
* 查询劳务单位
|
*
|
* @param ids 劳务单位ID
|
* @return 劳务单位
|
*/
|
public LaborUnit selectLaborUnitById(String ids);
|
|
/**
|
* 查询劳务单位列表
|
*
|
* @param laborUnit 劳务单位
|
* @return 劳务单位集合
|
*/
|
public List<LaborUnit> selectLaborUnitList(LaborUnit laborUnit);
|
|
/**
|
* 新增劳务单位
|
*
|
* @param laborUnit 劳务单位
|
* @return 结果
|
*/
|
public int insertLaborUnit(LaborUnit laborUnit);
|
|
/**
|
* 修改劳务单位
|
*
|
* @param laborUnit 劳务单位
|
* @return 结果
|
*/
|
public int updateLaborUnit(LaborUnit laborUnit);
|
|
/**
|
* 删除劳务单位
|
*
|
* @param ids 劳务单位ID
|
* @return 结果
|
*/
|
public int deleteLaborUnitById(String ids);
|
|
/**
|
* 批量删除劳务单位
|
*
|
* @param idss 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteLaborUnitByIds(String[] idss);
|
}
|