liyong
4 天以前 f90d9f53beb844265c4153159aadb0baf81bafdb
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
package cn.iocoder.yudao.module.aftersales.controller.admin.ticket.vo.ticket;
 
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;
 
/**
 * 售后工单分页查询 VO
 */
@Schema(description = "售后工单 - 分页查询 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class AfterSaleTicketPageReqVO extends PageParam {
 
    @Schema(description = "工单单号", example = "AS20240101000001")
    private String no;
 
    @Schema(description = "工单主题", example = "产品外观缺陷")
    private String name;
 
    @Schema(description = "客户编号", example = "1")
    private Long customerId;
 
    @Schema(description = "销售订单编号", example = "1")
    private Long saleOrderId;
 
    @Schema(description = "工单状态", example = "10")
    private Integer status;
 
    @Schema(description = "问题类型", example = "1")
    private Integer issueType;
 
    @Schema(description = "场景类型", example = "1")
    private Integer sceneType;
 
}