mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 02:39:37 +08:00
62 lines
1.4 KiB
Java
62 lines
1.4 KiB
Java
package com.ics.admin.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ics.admin.domain.CustomerAttachments;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 客户附件Service接口
|
|
*
|
|
* @author zzm
|
|
* @date 2021-03-29
|
|
*/
|
|
public interface ICustomerAttachmentsService extends IService<CustomerAttachments> {
|
|
/**
|
|
* 查询客户附件
|
|
*
|
|
* @param id 客户附件ID
|
|
* @return 客户附件
|
|
*/
|
|
CustomerAttachments selectCustomerAttachmentsById(Long id);
|
|
|
|
/**
|
|
* 查询客户附件列表
|
|
*
|
|
* @param customerAttachments 客户附件
|
|
* @return 客户附件集合
|
|
*/
|
|
List<CustomerAttachments> selectCustomerAttachmentsList(CustomerAttachments customerAttachments);
|
|
|
|
/**
|
|
* 新增客户附件
|
|
*
|
|
* @param customerAttachments 客户附件
|
|
* @return 结果
|
|
*/
|
|
int insertCustomerAttachments(CustomerAttachments customerAttachments);
|
|
|
|
/**
|
|
* 修改客户附件
|
|
*
|
|
* @param customerAttachments 客户附件
|
|
* @return 结果
|
|
*/
|
|
int updateCustomerAttachments(CustomerAttachments customerAttachments);
|
|
|
|
/**
|
|
* 批量删除客户附件
|
|
*
|
|
* @param ids 需要删除的数据ID
|
|
* @return 结果
|
|
*/
|
|
int deleteCustomerAttachmentsByIds(String ids);
|
|
|
|
/**
|
|
* 删除客户附件信息
|
|
*
|
|
* @param id 客户附件ID
|
|
* @return 结果
|
|
*/
|
|
int deleteCustomerAttachmentsById(Long id);
|
|
} |