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
package cn.iocoder.yudao.module.aftersales.controller.admin.returnobj.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;
 
/**
 * 售后退货申请分页查询 VO
 */
@Schema(description = "售后退货申请 - 分页查询 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class AfterSaleReturnPageReqVO extends PageParam {
 
    @Schema(description = "退货单号", example = "RT20240101000001")
    private String no;
 
    @Schema(description = "关联工单编号", example = "1")
    private Long ticketId;
 
    @Schema(description = "客户编号", example = "1")
    private Long customerId;
 
    @Schema(description = "退货状态", example = "10")
    private Integer status;
 
    @Schema(description = "场景类型", example = "1")
    private Integer sceneType;
 
}