package com.javaweb.geo.service;
|
|
import com.javaweb.geo.domain.HolePerson;
|
import java.util.List;
|
|
/**
|
* 钻孔-工人Service接口
|
*
|
* @author zmk
|
* @date 2022-10-20
|
*/
|
public interface IHolePersonService
|
{
|
/**
|
* 查询钻孔-工人
|
*
|
* @param ids 钻孔-工人ID
|
* @return 钻孔-工人
|
*/
|
public HolePerson selectHolePersonById(String ids);
|
|
/**
|
* 查询钻孔-工人列表
|
*
|
* @param holePerson 钻孔-工人
|
* @return 钻孔-工人集合
|
*/
|
public List<HolePerson> selectHolePersonList(HolePerson holePerson);
|
|
/**
|
* 新增钻孔-工人
|
*
|
* @param holePerson 钻孔-工人
|
* @return 结果
|
*/
|
public int insertHolePerson(HolePerson holePerson);
|
|
/**
|
* 修改钻孔-工人
|
*
|
* @param holePerson 钻孔-工人
|
* @return 结果
|
*/
|
public int updateHolePerson(HolePerson holePerson);
|
|
/**
|
* 批量删除钻孔-工人
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteHolePersonByIds(String ids);
|
|
/**
|
* 删除钻孔-工人信息
|
*
|
* @param ids 钻孔-工人ID
|
* @return 结果
|
*/
|
public int deleteHolePersonById(String ids);
|
}
|