|
|
@ -30,6 +30,7 @@ import com.yxt.common.core.vo.Vo; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
/** |
|
|
|
* Project: anrui-base(车型信息) <br/> |
|
|
@ -45,194 +46,23 @@ import io.swagger.annotations.ApiModelProperty; |
|
|
|
* @since 1.0 |
|
|
|
*/ |
|
|
|
@ApiModel(value = "车型报价单 视图数据对象", description = "车型报价单 视图数据对象") |
|
|
|
@Data |
|
|
|
public class BusVehicleOfferVo implements Vo { |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("询价单sid") |
|
|
|
private String inquirySid; // 询价单sid
|
|
|
|
|
|
|
|
@ApiModelProperty("报价人") |
|
|
|
private String offerPeoplea; // 报价人
|
|
|
|
|
|
|
|
@ApiModelProperty("sid") |
|
|
|
private String sid; // sid
|
|
|
|
@ApiModelProperty("报价日期") |
|
|
|
private String offerDate; // 报价日期
|
|
|
|
|
|
|
|
@ApiModelProperty("创建组织sid") |
|
|
|
private String createOrgSid; // 创建组织sid
|
|
|
|
|
|
|
|
@ApiModelProperty("品牌sid") |
|
|
|
private String brandSid; // 品牌sid
|
|
|
|
|
|
|
|
@ApiModelProperty("车型sid") |
|
|
|
private String modelSid; // 车型sid
|
|
|
|
|
|
|
|
@ApiModelProperty("车型简述配置sid") |
|
|
|
private String modelBriefConfigurationSid; // 车型简述配置sid
|
|
|
|
|
|
|
|
private String createTime; // 报价日期
|
|
|
|
@ApiModelProperty("品牌名称") |
|
|
|
private String brandName; // 品牌sid
|
|
|
|
@ApiModelProperty("车型名称") |
|
|
|
private String vehModelName; // 车型名称
|
|
|
|
@ApiModelProperty("特殊或差异说明") |
|
|
|
private String specialInstructions; // 特殊或差异说明
|
|
|
|
|
|
|
|
@ApiModelProperty("厂家结算价") |
|
|
|
private String manufacturerSettlementPrice; // 厂家结算价
|
|
|
|
|
|
|
|
private String costPrice; // 厂家结算价
|
|
|
|
@ApiModelProperty("销售参考价") |
|
|
|
private String salesReferencePrice; // 销售参考价
|
|
|
|
|
|
|
|
private String salePrice; // 销售参考价
|
|
|
|
@ApiModelProperty("价格有效期") |
|
|
|
private String priceValidity; // 价格有效期
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @return 询价单sid |
|
|
|
*/ |
|
|
|
public String getInquirySid(){ |
|
|
|
return inquirySid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param inquirySid 询价单sid to set |
|
|
|
*/ |
|
|
|
public void setInquirySid(String inquirySid){ |
|
|
|
this.inquirySid = inquirySid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 报价人 |
|
|
|
*/ |
|
|
|
public String getOfferPeoplea(){ |
|
|
|
return offerPeoplea; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param offerPeoplea 报价人 to set |
|
|
|
*/ |
|
|
|
public void setOfferPeoplea(String offerPeoplea){ |
|
|
|
this.offerPeoplea = offerPeoplea; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 报价日期 |
|
|
|
*/ |
|
|
|
public String getOfferDate(){ |
|
|
|
return offerDate; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param offerDate 报价日期 to set |
|
|
|
*/ |
|
|
|
public void setOfferDate(String offerDate){ |
|
|
|
this.offerDate = offerDate; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 创建组织sid |
|
|
|
*/ |
|
|
|
public String getCreateOrgSid(){ |
|
|
|
return createOrgSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param createOrgSid 创建组织sid to set |
|
|
|
*/ |
|
|
|
public void setCreateOrgSid(String createOrgSid){ |
|
|
|
this.createOrgSid = createOrgSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 品牌sid |
|
|
|
*/ |
|
|
|
public String getBrandSid(){ |
|
|
|
return brandSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param brandSid 品牌sid to set |
|
|
|
*/ |
|
|
|
public void setBrandSid(String brandSid){ |
|
|
|
this.brandSid = brandSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 车型sid |
|
|
|
*/ |
|
|
|
public String getModelSid(){ |
|
|
|
return modelSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param modelSid 车型sid to set |
|
|
|
*/ |
|
|
|
public void setModelSid(String modelSid){ |
|
|
|
this.modelSid = modelSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 车型简述配置sid |
|
|
|
*/ |
|
|
|
public String getModelBriefConfigurationSid(){ |
|
|
|
return modelBriefConfigurationSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param modelBriefConfigurationSid 车型简述配置sid to set |
|
|
|
*/ |
|
|
|
public void setModelBriefConfigurationSid(String modelBriefConfigurationSid){ |
|
|
|
this.modelBriefConfigurationSid = modelBriefConfigurationSid; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 特殊或差异说明 |
|
|
|
*/ |
|
|
|
public String getSpecialInstructions(){ |
|
|
|
return specialInstructions; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param specialInstructions 特殊或差异说明 to set |
|
|
|
*/ |
|
|
|
public void setSpecialInstructions(String specialInstructions){ |
|
|
|
this.specialInstructions = specialInstructions; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 厂家结算价 |
|
|
|
*/ |
|
|
|
public String getManufacturerSettlementPrice(){ |
|
|
|
return manufacturerSettlementPrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param manufacturerSettlementPrice 厂家结算价 to set |
|
|
|
*/ |
|
|
|
public void setManufacturerSettlementPrice(String manufacturerSettlementPrice){ |
|
|
|
this.manufacturerSettlementPrice = manufacturerSettlementPrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 销售参考价 |
|
|
|
*/ |
|
|
|
public String getSalesReferencePrice(){ |
|
|
|
return salesReferencePrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param salesReferencePrice 销售参考价 to set |
|
|
|
*/ |
|
|
|
public void setSalesReferencePrice(String salesReferencePrice){ |
|
|
|
this.salesReferencePrice = salesReferencePrice; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return 价格有效期 |
|
|
|
*/ |
|
|
|
public String getPriceValidity(){ |
|
|
|
return priceValidity; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param priceValidity 价格有效期 to set |
|
|
|
*/ |
|
|
|
public void setPriceValidity(String priceValidity){ |
|
|
|
this.priceValidity = priceValidity; |
|
|
|
} |
|
|
|
} |
|
|
|