dongyukun
2025-05-23 b36ea13d04a4f0d9920dbef918f51bbb096aff95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.iailab.module.model.mcs.sche.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
 
/**
 * @author Jay
 */
@Schema(description = "模型服务 - 调度建议创建/修改 Request VO")
@Data
public class StSuggestOperationRecordReqVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "标题")
    private String title;
 
    @Schema(description = "内容")
    private String content;
 
    @Schema(description = "方案ID")
    private String schemeId;
 
    @Schema(description = "模型ID")
    private String modelId;
 
    @Schema(description = "模型名称")
    private String modelName;
 
    @Schema(description = "调度时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date scheduleTime;
 
    @Schema(description = "结果状态")
    private String resultCode;
 
    @Schema(description = "结果数据")
    private String resultData;
 
    @Schema(description = "操作(已采纳,取消采纳,已忽略等)")
    private String operate;
 
    @Schema(description = "原因")
    private String reason;
 
    @Schema(description = "处理人ID")
    private String handlerId;
 
    @Schema(description = "处理人")
    private String handler;
 
    @Schema(description = "处理时间")
    private Date handleTime;
 
    @Schema(description = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
}