dengzedong
2025-06-04 e7b38b57f3ef5446718272e1f4f26c1ad63e3126
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
package com.iailab.module.model.api.mcs.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author Jay
 */
@Schema(description = "模型服务 - 保存建议操作记录")
@Data
public class SuggestOperationRecordReqVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "操作(已采纳,取消采纳,已忽略等)")
    private String operate;
 
    @Schema(description = "原因")
    private String reason;
 
    @Schema(description = "处理人ID")
    private String handlerId;
 
    @Schema(description = "处理人")
    private String handler;
}