package cn.iocoder.yudao.module.crm.controller.admin.cancellation.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Schema(description = "管理后台 - CRM 销户申请分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class CrmCancellationPageReqVO extends PageParam {
|
|
@Schema(description = "销户编号", example = "CL202608190001")
|
private String cancellationNo;
|
|
@Schema(description = "客户ID", example = "2048")
|
private Long customerId;
|
|
@Schema(description = "销户类型", example = "ELECTRICITY")
|
private String cancellationType;
|
|
@Schema(description = "审批状态", example = "0")
|
private Integer auditStatus;
|
|
}
|