
3 changed files with 156 additions and 0 deletions
@ -0,0 +1,86 @@ |
|||
package com.yxt.anrui.crm.api.crmcustomertemp; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppCrmCustomerTempBasicsDetailsVo implements Vo { |
|||
|
|||
@ApiModelProperty("客户类型") |
|||
private String customerTypeKey; |
|||
|
|||
@ApiModelProperty("客户类型value") |
|||
private String customerType; |
|||
|
|||
@ApiModelProperty("客户名称") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("联系电话") |
|||
private String mobile; |
|||
|
|||
@ApiModelProperty("微信号") |
|||
private String weiXin; |
|||
|
|||
@ApiModelProperty("公司名称") |
|||
private String companyName; |
|||
|
|||
@ApiModelProperty("客户地址") |
|||
private String addressNss; |
|||
|
|||
@ApiModelProperty("详细地址") |
|||
private String address; |
|||
|
|||
@ApiModelProperty("客户级别") |
|||
private String level; |
|||
|
|||
@ApiModelProperty("客户生日") |
|||
private String birthday; |
|||
|
|||
@ApiModelProperty("性别") |
|||
private String sex; |
|||
|
|||
@ApiModelProperty("证件类型") |
|||
private String idType; |
|||
|
|||
@ApiModelProperty("证件编码") |
|||
private String idNumber; |
|||
|
|||
@ApiModelProperty("证件有效期") |
|||
private String idDate; |
|||
|
|||
@ApiModelProperty("电子邮箱") |
|||
private String email; |
|||
|
|||
@ApiModelProperty("紧急联系人") |
|||
private String name2; |
|||
|
|||
@ApiModelProperty("紧急联系电话") |
|||
private String mobile2; |
|||
|
|||
@ApiModelProperty("客户来源value") |
|||
private String source; |
|||
|
|||
@ApiModelProperty("客户分类value") |
|||
private String classification; |
|||
|
|||
@ApiModelProperty("客户类型value") |
|||
private String remarks; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,42 @@ |
|||
package com.yxt.anrui.crm.api.crmvehicledemand; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppCrmVehicleDemandParticularsVo implements Vo { |
|||
@ApiModelProperty("购车方式value") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("车型sid") |
|||
private String modelSid; |
|||
|
|||
@ApiModelProperty("车型名称") |
|||
private String modelName; |
|||
|
|||
@ApiModelProperty("销售指导价") |
|||
private String price; |
|||
|
|||
@ApiModelProperty("品牌") |
|||
private String brand; |
|||
|
|||
@ApiModelProperty("配置sid") |
|||
private String configSid; |
|||
|
|||
@ApiModelProperty("数量") |
|||
private String number; |
|||
|
|||
@ApiModelProperty("车型报价") |
|||
private String quotation; |
|||
|
|||
@ApiModelProperty("换选装") |
|||
private String optionsConfig; |
|||
|
|||
@ApiModelProperty("预计提车日期") |
|||
private String date; |
|||
|
|||
@ApiModelProperty("备注") |
|||
private String remarks; |
|||
|
|||
} |
@ -0,0 +1,28 @@ |
|||
package com.yxt.anrui.crm.api.crmvehicledemand; |
|||
|
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import io.swagger.models.auth.In; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppCrmVehicleDemandUpdateDto implements Dto { |
|||
|
|||
@ApiModelProperty("购车方式类型") |
|||
private String purchaseMethod; |
|||
|
|||
@ApiModelProperty("购车方式value") |
|||
private String purchaseMethodValue; |
|||
|
|||
@ApiModelProperty("备注") |
|||
private String remarks; |
|||
|
|||
@ApiModelProperty("数量") |
|||
private String number; |
|||
|
|||
@ApiModelProperty("提车日期") |
|||
private String date; |
|||
|
|||
@ApiModelProperty("意向车型sid") |
|||
private String intentionSid; |
|||
} |
Loading…
Reference in new issue