杜洪波
2025-02-17 36da3b80c111078a653c4c62052c5fce0757618d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.product.contract.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/11/25 10:11
 * @description: 任务进度填报
 */
public interface ITaskProgressService {
 
    String saveTaskProgress(FieldSetEntity fs) throws BaseException;
 
}