xiongan-meeting/ics-admin/src/main/java/com/ics/admin/service/ICustomerContractOtherService.java

62 lines
1.6 KiB
Java
Raw Normal View History

2024-01-23 16:42:27 +08:00
package com.ics.admin.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ics.admin.domain.CustomerContractOther;
import java.util.List;
/**
* 客户合同其他费用Service接口
*
* @author ics
* @date 2021-09-27
*/
public interface ICustomerContractOtherService extends IService<CustomerContractOther> {
/**
* 查询客户合同其他费用
*
* @param id 客户合同其他费用ID
* @return 客户合同其他费用
*/
CustomerContractOther selectCustomerContractOtherById(Long id);
/**
* 查询客户合同其他费用列表
*
* @param customerContractOther 客户合同其他费用
* @return 客户合同其他费用集合
*/
List<CustomerContractOther> selectCustomerContractOtherList(CustomerContractOther customerContractOther);
/**
* 新增客户合同其他费用
*
* @param customerContractOther 客户合同其他费用
* @return 结果
*/
int insertCustomerContractOther(CustomerContractOther customerContractOther);
/**
* 修改客户合同其他费用
*
* @param customerContractOther 客户合同其他费用
* @return 结果
*/
int updateCustomerContractOther(CustomerContractOther customerContractOther);
/**
* 批量删除客户合同其他费用
*
* @param ids 需要删除的数据ID
* @return 结果
*/
int deleteCustomerContractOtherByIds(String ids);
/**
* 删除客户合同其他费用信息
*
* @param id 客户合同其他费用ID
* @return 结果
*/
int deleteCustomerContractOtherById(Long id);
}