liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package jnpf.tmsEntity.task;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
public class TmsFromPlanResult {
 
    @Schema(description = "来源计划ID")
    private String planId;
 
    @Schema(description = "新生成任务数")
    private int created;
 
    @Schema(description = "已存在而跳过的行数")
    private int skipped;
 
    @Schema(description = "本次新生成的任务ID")
    private List<String> taskIds = new ArrayList<>();
}