|
|
@ -30,7 +30,9 @@ import com.yxt.common.core.dto.Dto; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
@ -47,102 +49,25 @@ import java.math.BigDecimal; |
|
|
|
* @since 1.0 |
|
|
|
*/ |
|
|
|
@ApiModel(value = "车型与简述配置关联表 数据传输对象", description = "车型与简述配置关联表 数据传输对象") |
|
|
|
@Data |
|
|
|
public class BaseVehmodelConfigDto implements Dto { |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("车型与简述配置关联sid") |
|
|
|
private String sid; // 车型与简述配置关联sid
|
|
|
|
@ApiModelProperty("车型sid") |
|
|
|
private String modelSid; // 车型sid
|
|
|
|
|
|
|
|
@ApiModelProperty("简述配置sid") |
|
|
|
private String configurationItemsSid; // 简述配置sid
|
|
|
|
|
|
|
|
@ApiModelProperty("厂家结算价") |
|
|
|
@NotBlank(message = "厂家结算价不能为空") |
|
|
|
private BigDecimal manufactorSettlementPrice; // 厂家结算价
|
|
|
|
|
|
|
|
@ApiModelProperty("销售参考价") |
|
|
|
private BigDecimal salesReferencePrice; // 销售参考价
|
|
|
|
|
|
|
|
@ApiModelProperty("销售指导价") |
|
|
|
@NotBlank(message = "销售指导价不能为空") |
|
|
|
private String guidedPrice; // 销售指导价
|
|
|
|
@ApiModelProperty("价格有效期") |
|
|
|
private String priceValidity; // 价格有效期
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "是否常用车型") |
|
|
|
private Integer isCommonModel; |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 车型sid |
|
|
|
*/ |
|
|
|
public String getModelSid(){ |
|
|
|
return modelSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param modelSid 车型sid to set |
|
|
|
*/ |
|
|
|
public void setModelSid(String modelSid){ |
|
|
|
this.modelSid = modelSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 简述配置sid |
|
|
|
*/ |
|
|
|
public String getConfigurationItemsSid(){ |
|
|
|
return configurationItemsSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param configurationItemsSid 简述配置sid to set |
|
|
|
*/ |
|
|
|
public void setConfigurationItemsSid(String configurationItemsSid){ |
|
|
|
this.configurationItemsSid = configurationItemsSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 厂家结算价 |
|
|
|
*/ |
|
|
|
public BigDecimal getManufactorSettlementPrice() { |
|
|
|
return manufactorSettlementPrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param manufactorSettlementPrice 厂家结算价 to set |
|
|
|
*/ |
|
|
|
public void setManufactorSettlementPrice(BigDecimal manufactorSettlementPrice) { |
|
|
|
this.manufactorSettlementPrice = manufactorSettlementPrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 销售参考价 |
|
|
|
*/ |
|
|
|
public BigDecimal getSalesReferencePrice() { |
|
|
|
return salesReferencePrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param salesReferencePrice 销售参考价 to set |
|
|
|
*/ |
|
|
|
public void setSalesReferencePrice(BigDecimal salesReferencePrice) { |
|
|
|
this.salesReferencePrice = salesReferencePrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 价格有效期 |
|
|
|
*/ |
|
|
|
public String getPriceValidity(){ |
|
|
|
return priceValidity; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param priceValidity 价格有效期 to set |
|
|
|
*/ |
|
|
|
public void setPriceValidity(String priceValidity){ |
|
|
|
this.priceValidity = priceValidity; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getIsCommonModel() { |
|
|
|
return isCommonModel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIsCommonModel(Integer isCommonModel) { |
|
|
|
this.isCommonModel = isCommonModel; |
|
|
|
} |
|
|
|
} |