|
|
@ -26,11 +26,14 @@ |
|
|
|
package com.yxt.anrui.terminal.api.autoservice.valcustfiling; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.yxt.common.core.vo.Vo; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* Project: anrui-buscenter(价值客户备案申请) <br/> |
|
|
|
* File: BusValcustFilingVo.java <br/> |
|
|
@ -56,28 +59,15 @@ public class AppValcustFilingVo implements Vo { |
|
|
|
private String company; |
|
|
|
@ApiModelProperty("申请信息") |
|
|
|
private String publishInfo; |
|
|
|
@ApiModelProperty("申请部门名称") |
|
|
|
private String applyDeptName; |
|
|
|
@ApiModelProperty("申请人姓名") |
|
|
|
private String createByName; |
|
|
|
@ApiModelProperty("申请日期") |
|
|
|
private String createTime; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
private Date createTime; |
|
|
|
@ApiModelProperty("合同编号") |
|
|
|
private String contractNo; |
|
|
|
@ApiModelProperty("车型名称") |
|
|
|
private String modelName; |
|
|
|
@ApiModelProperty("车架号") |
|
|
|
private String vinNo; |
|
|
|
@ApiModelProperty("加装配置/销售让利金额") |
|
|
|
private String money; |
|
|
|
@ApiModelProperty("加装配置/销售让利名称") |
|
|
|
private String moneyName; |
|
|
|
@ApiModelProperty("应收手续费") |
|
|
|
private String ysMoney; |
|
|
|
@ApiModelProperty("实收手续费") |
|
|
|
private String ssMoney; |
|
|
|
@ApiModelProperty("流程定义id") |
|
|
|
private String procDefId; |
|
|
|
@ApiModelProperty("流程实例id") |
|
|
|
private String procInstId; |
|
|
|
@ApiModelProperty("是否显示办理") |
|
|
|
private Boolean showUpdateBtn = false; |
|
|
|
} |
|
|
|