许鹏程
2023-05-24 6c2c620999eaa5fcb353ebbbc6839c0d6a0122f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.product.administration.service.ide;
import com.product.core.entity.FieldSetEntity;
 
public interface ICooperatesService {
 
    String addCooperate(FieldSetEntity fs);
 
    String addSupplyText(FieldSetEntity fs);
 
    boolean updateCooperate(FieldSetEntity fs);
 
    boolean deleteCooperate(FieldSetEntity fs);
 
}