package cn.iocoder.yudao.module.crm.controller.admin.credit.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 CrmCreditRatingPageReqVO extends PageParam {
|
|
@Schema(description = "客户ID", example = "2048")
|
private Long customerId;
|
|
@Schema(description = "信用等级", example = "B")
|
private String level;
|
|
@Schema(description = "评定类型", example = "INITIAL")
|
private String evalType;
|
|
}
|