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