shichongfu
2023-06-02 bc0e6504f935fe54a3a68160db313f6d4f089b17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.product.administration.service.ide;
import com.product.core.entity.FieldSetEntity;
 
public interface ICooperatesService {
 
    String addCooperate(FieldSetEntity fs);
 
    String addSupplyText(FieldSetEntity fs);
    boolean delSupplyText(FieldSetEntity fs);
 
    boolean updateCooperate(FieldSetEntity fs);
 
    boolean deleteCooperate(FieldSetEntity fs);
 
}