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
42
43
44
45
package cn.iocoder.yudao.module.aftersales.controller.admin.problem.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
/**
 * 售后问题库 - 分页查询 Request VO
 */
@Schema(description = "售后问题库 - 分页查询 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class AfterSaleProblemPageReqVO extends PageParam {
 
    @Schema(description = "问题单号", example = "AP20260813000001")
    private String no;
 
    @Schema(description = "关键字(单号/标题/描述/解决方案)", example = "传感器")
    private String keyword;
 
    @Schema(description = "来源工单编号", example = "1")
    private Long sourceTicketId;
 
    @Schema(description = "物料编号", example = "1")
    private Long itemId;
 
    @Schema(description = "物料编码(模糊)", example = "MAT-001")
    private String itemCode;
 
    @Schema(description = "问题分类", example = "功能故障")
    private String issueCategory;
 
    @Schema(description = "问题类型", example = "1")
    private Integer issueType;
 
    @Schema(description = "根因分类", example = "3")
    private Integer rootCauseCategory;
 
    @Schema(description = "状态: 0-草稿 1-已发布 2-已停用", example = "1")
    private Integer status;
 
}