package cn.iocoder.yudao.module.aftersales.controller.admin.visit.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 AfterSaleVisitPageReqVO extends PageParam {
|
|
@Schema(description = "工单编号", example = "1")
|
private Long ticketId;
|
|
@Schema(description = "回访方式", example = "0")
|
private Integer visitType;
|
|
@Schema(description = "是否满意", example = "true")
|
private Boolean satisfied;
|
|
}
|