xiaoyi
4 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
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.compensation.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 AfterSaleCompensationPageReqVO extends PageParam {
 
    @Schema(description = "赔付单号", example = "PS20260820001")
    private String compensationNo;
 
    @Schema(description = "赔付类型", example = "1")
    private Integer compensationType;
 
    @Schema(description = "关联售后工单编号", example = "1")
    private Long ticketId;
 
    @Schema(description = "客户编号", example = "1")
    private Long customerId;
 
    @Schema(description = "审批状态", example = "0")
    private Integer auditStatus;
 
}