24 changed files with 255 additions and 32 deletions
@ -0,0 +1,20 @@ |
|||
package com.yxt.anrui.buscenter.api.bussalesorder.app.order; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/9/2 14:11 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class AppOrderInitQuery implements Query { |
|||
private static final long serialVersionUID = 7113663851206157068L; |
|||
|
|||
@ApiModelProperty("销售订单sid") |
|||
private String saleOrderSid; |
|||
@ApiModelProperty("意向车型sid") |
|||
private String intentionSid; |
|||
} |
@ -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; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/8/31 16:39 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class CrmOrderVo implements Vo { |
|||
private static final long serialVersionUID = 441436313342084907L; |
|||
|
|||
@ApiModelProperty("客户名称") |
|||
private String customerName; |
|||
|
|||
@ApiModelProperty("客户手机号") |
|||
private String customerMobile; |
|||
|
|||
@ApiModelProperty("付款类型") |
|||
private String payType; |
|||
|
|||
@ApiModelProperty("付款类型") |
|||
private String payValue; |
|||
|
|||
|
|||
@ApiModelProperty(value = "金融方案") |
|||
private String financePlan; |
|||
|
|||
@ApiModelProperty(value = "金融方案value") |
|||
private String financePlanValue; |
|||
|
|||
@ApiModelProperty("客户sid") |
|||
private String customerSid; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,20 @@ |
|||
package com.yxt.anrui.terminal.api.autoservice.saleOrders.order; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/9/2 14:02 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class OrderInitQuery implements Query { |
|||
private static final long serialVersionUID = -6375976467529224306L; |
|||
|
|||
@ApiModelProperty("销售订单sid") |
|||
private String saleOrderSid; |
|||
@ApiModelProperty("意向车型sid") |
|||
private String intentionSid; |
|||
} |
Loading…
Reference in new issue