liu
22 小时以前 46287520465b5664a1ddb0256537857cfd1cfc15
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
package cn.iocoder.yudao.module.aftersales.controller.admin.visit.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
import java.util.List;
 
/**
 * 售后回访记录 - 登记 Request VO
 */
@Schema(description = "售后回访记录 - 登记 Request VO")
@Data
public class AfterSaleVisitCreateReqVO {
 
    @Schema(description = "工单编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "工单不能为空")
    private Long ticketId;
 
    @Schema(description = "回访方式: 0-电话 1-上门 2-远程 3-其他", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
    @NotNull(message = "回访方式不能为空")
    private Integer visitType;
 
    @Schema(description = "回访内容", example = "客户反馈已正常使用")
    private String content;
 
    @Schema(description = "是否满意", requiredMode = Schema.RequiredMode.REQUIRED, example = "true")
    @NotNull(message = "是否满意不能为空")
    private Boolean satisfied;
 
    @Schema(description = "问题是否复发", requiredMode = Schema.RequiredMode.REQUIRED, example = "false")
    @NotNull(message = "问题是否复发不能为空")
    private Boolean recurred;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "附件 blobId 列表")
    private List<Long> blobIds;
 
}