zm
2025-03-04 6e332c32f5121a372cecc8305e45f6571e4baa16
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/11/25 10:11
 * @description: 任务分配信息
 */
public interface ITaskInfoService {
 
    String saveTaskInfo(FieldSetEntity fs) throws BaseException;
 
    boolean deleteTaskInfo(FieldSetEntity fs) throws BaseException;
 
}