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;
|
|
}
|