package cn.iocoder.yudao.module.crm.controller.admin.refund.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 CrmRefundPageReqVO extends PageParam {
|
|
@Schema(description = "退费单号", example = "RF202608190001")
|
private String refundNo;
|
|
@Schema(description = "客户ID", example = "2048")
|
private Long customerId;
|
|
@Schema(description = "退费类型", example = "ELECTRICITY")
|
private String refundType;
|
|
@Schema(description = "审批状态", example = "0")
|
private Integer auditStatus;
|
|
}
|