64 lines
1.4 KiB
Java
64 lines
1.4 KiB
Java
package com.ghy.goods.service;
|
|
|
|
import java.util.List;
|
|
import com.ghy.goods.domain.InsuranceManager;
|
|
|
|
/**
|
|
* 保险管理Service接口
|
|
*
|
|
* @author clunt
|
|
* @date 2024-09-25
|
|
*/
|
|
public interface IInsuranceManagerService
|
|
{
|
|
/**
|
|
* 查询保险管理
|
|
*
|
|
* @param id 保险管理主键
|
|
* @return 保险管理
|
|
*/
|
|
public InsuranceManager selectInsuranceManagerById(Long id);
|
|
|
|
/**
|
|
* 查询保险管理列表
|
|
*
|
|
* @param insuranceManager 保险管理
|
|
* @return 保险管理集合
|
|
*/
|
|
public List<InsuranceManager> selectInsuranceManagerList(InsuranceManager insuranceManager);
|
|
|
|
public List<InsuranceManager> selectByIds(List<Long> ids);
|
|
|
|
/**
|
|
* 新增保险管理
|
|
*
|
|
* @param insuranceManager 保险管理
|
|
* @return 结果
|
|
*/
|
|
public int insertInsuranceManager(InsuranceManager insuranceManager);
|
|
|
|
/**
|
|
* 修改保险管理
|
|
*
|
|
* @param insuranceManager 保险管理
|
|
* @return 结果
|
|
*/
|
|
public int updateInsuranceManager(InsuranceManager insuranceManager);
|
|
|
|
/**
|
|
* 批量删除保险管理
|
|
*
|
|
* @param ids 需要删除的保险管理主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteInsuranceManagerByIds(String ids);
|
|
|
|
/**
|
|
* 删除保险管理信息
|
|
*
|
|
* @param id 保险管理主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteInsuranceManagerById(Long id);
|
|
}
|