| | |
| | | package cn.iocoder.yudao.module.aftersales.controller.admin.ticket.vo.ticket; |
| | | |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Schema(description = "关闭时间") |
| | | private LocalDateTime closedTime; |
| | | |
| | | @Schema(description = "回访状态: 0-待回访 1-已回访通过", example = "0") |
| | | private Integer visitStatus; |
| | | |
| | | @Schema(description = "最近一次回访时间") |
| | | private LocalDateTime lastVisitTime; |
| | | |
| | | @Schema(description = "最近一次回访是否满意", example = "true") |
| | | private Boolean lastVisitSatisfied; |
| | | |
| | | @Schema(description = "最近一次回访问题是否复发", example = "false") |
| | | private Boolean lastVisitRecurred; |
| | | |
| | | @Schema(description = "沉淀问题编号", example = "1") |
| | | private Long problemId; |
| | | |
| | | @Schema(description = "沉淀问题单号", example = "AP20260813000001") |
| | | private String problemNo; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | |
| | | @Schema(description = "更新时间") |
| | | private LocalDateTime updateTime; |
| | | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "明细行列表") |
| | | private List<Item> items; |
| | | |