18756
2024-08-20 069faaad2f86e570842e4717ea0419e2daef9924
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.product.administration.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
public interface ICustomerInfoService {
 
    /**
     *     客户新增
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean addCustomerInfo(FieldSetEntity fse)throws BaseException;
    
    /**
     *     客户修改
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean updateCustomerInfo(FieldSetEntity fse)throws BaseException;
    
    /**
     *     客户删除
     * @param uuid
     * @return
     * @throws BaseException
     */
    boolean deleteCustomerInfo(String uuid) throws BaseException;
}