|
|
@ -6,8 +6,6 @@ import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
|
* Project: anrui-scm(进销存) <br/> |
|
|
|
* File: BusVehicleApplyDetailDto.java <br/> |
|
|
@ -35,19 +33,19 @@ public class BusVehicleApplyDetailDto implements Dto { |
|
|
|
@ApiModelProperty("排产数量") |
|
|
|
private String quantity; |
|
|
|
@ApiModelProperty("使用订金") |
|
|
|
private BigDecimal useDeposit; |
|
|
|
private String useDeposit; |
|
|
|
@ApiModelProperty("销售指导价") |
|
|
|
private BigDecimal saleGuPrice; |
|
|
|
private String saleGuPrice; |
|
|
|
@ApiModelProperty("常用配置sid") |
|
|
|
private String configSid; |
|
|
|
@ApiModelProperty("常用配置名称") |
|
|
|
private String configName; |
|
|
|
@ApiModelProperty("申请订金") |
|
|
|
private BigDecimal applyForDeposit; |
|
|
|
private String applyForDeposit; |
|
|
|
@ApiModelProperty("备注") |
|
|
|
private String remarks; // 备注
|
|
|
|
@ApiModelProperty("内部编码") |
|
|
|
private String insideCode; |
|
|
|
@ApiModelProperty(value = "厂家合同价") |
|
|
|
private Integer contractPrice; |
|
|
|
private String contractPrice; |
|
|
|
} |