package com.javaweb.geo.service;
|
|
import com.javaweb.geo.domain.Company;
|
import java.util.List;
|
|
/**
|
* 勘察单位Service接口
|
*
|
* @author zmk
|
* @date 2022-10-14
|
*/
|
public interface ICompanyService
|
{
|
/**
|
* 查询勘察单位
|
*
|
* @param ids 勘察单位ID
|
* @return 勘察单位
|
*/
|
public Company selectCompanyById(String ids);
|
|
/**
|
* 查询勘察单位列表
|
*
|
* @param company 勘察单位
|
* @return 勘察单位集合
|
*/
|
public List<Company> selectCompanyList(Company company);
|
|
/**
|
* 新增勘察单位
|
*
|
* @param company 勘察单位
|
* @return 结果
|
*/
|
public int insertCompany(Company company);
|
|
/**
|
* 修改勘察单位
|
*
|
* @param company 勘察单位
|
* @return 结果
|
*/
|
public int updateCompany(Company company);
|
|
/**
|
* 批量删除勘察单位
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteCompanyByIds(String ids);
|
|
/**
|
* 删除勘察单位信息
|
*
|
* @param ids 勘察单位ID
|
* @return 结果
|
*/
|
public int deleteCompanyById(String ids);
|
}
|