杜洪波
2024-10-09 0265a4b398b7618880d5dcb6fdb50939409eb2a0
1
2
3
4
5
6
7
8
9
10
11
12
package com.product.administration.service.ide;
 
import com.product.core.entity.FieldSetEntity;
 
public interface ICustomerSatisfactionService {
 
    boolean addCustomerSatisfaction(FieldSetEntity fse);
    
    boolean updateCustomerSatisfaction(FieldSetEntity fse);
    
    boolean deleteCustomerSatisfaction(String uuid);
}