8 changed files with 159 additions and 17 deletions
@ -0,0 +1,25 @@ |
|||
package com.yxt.anrui.crm.api.crmvehicledemand.pc; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/4/28 11:12 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class PcCrmVehicleDemandQuery implements Query { |
|||
private static final long serialVersionUID = -8616059903982611656L; |
|||
|
|||
@ApiModelProperty(value = "客户sid") |
|||
@NotBlank(message = "请选择客户") |
|||
private String customerSid; |
|||
@ApiModelProperty(value = "车型别名") |
|||
private String modelName; |
|||
@ApiModelProperty(value = "配置") |
|||
private String modelConfigName; |
|||
} |
@ -0,0 +1,27 @@ |
|||
package com.yxt.anrui.crm.api.crmvehicledemand.pc; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/4/28 11:12 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class PcCrmVehicleDemandVo implements Vo { |
|||
private static final long serialVersionUID = 247858460207879634L; |
|||
|
|||
@ApiModelProperty(value = "车型sid") |
|||
private String modelSid; |
|||
@ApiModelProperty(value = "配置sid") |
|||
private String modelConfigSid; |
|||
@ApiModelProperty(value = "品牌") |
|||
private String brandName; |
|||
@ApiModelProperty(value = "车型别名") |
|||
private String modelAlias; |
|||
|
|||
@ApiModelProperty(value = "常用配置") |
|||
private String config; |
|||
} |
Loading…
Reference in new issue