zm
2024-07-26 af9498656d10e69a84a0783aa70ca04c5705e538
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.product.contract.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/6/18 14:11
 * @description: 中标项目任务
 */
public interface IAwardedService {
 
    String saveAwarded(FieldSetEntity fs) throws BaseException;
 
    boolean deleteAwarded(FieldSetEntity fs) throws BaseException;
 
}