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