|
@@ -119,6 +119,89 @@ public class GoodsDto implements Serializable {
|
|
|
|
|
|
private String thirdPartyMerchCode;
|
|
|
|
|
|
+
|
|
|
+ // MychemID
|
|
|
+ private String mychemId;
|
|
|
+
|
|
|
+
|
|
|
+ private String hsCode;
|
|
|
+
|
|
|
+ private String hsCodeName;
|
|
|
+
|
|
|
+ private String plu;
|
|
|
+
|
|
|
+ public String getCounterPrice() {
|
|
|
+ return counterPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCounterPrice(String counterPrice) {
|
|
|
+ this.counterPrice = counterPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExtraPrice() {
|
|
|
+ return extraPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExtraPrice(String extraPrice) {
|
|
|
+ this.extraPrice = extraPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnitPrice() {
|
|
|
+ return unitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnitPrice(String unitPrice) {
|
|
|
+ this.unitPrice = unitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPromotionDesc() {
|
|
|
+ return promotionDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPromotionDesc(String promotionDesc) {
|
|
|
+ this.promotionDesc = promotionDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getGoodsType() {
|
|
|
+ return goodsType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGoodsType(Integer goodsType) {
|
|
|
+ this.goodsType = goodsType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMychemId() {
|
|
|
+ return mychemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMychemId(String mychemId) {
|
|
|
+ this.mychemId = mychemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getHsCode() {
|
|
|
+ return hsCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHsCode(String hsCode) {
|
|
|
+ this.hsCode = hsCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getHsCodeName() {
|
|
|
+ return hsCodeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHsCodeName(String hsCodeName) {
|
|
|
+ this.hsCodeName = hsCodeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlu() {
|
|
|
+ return plu;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlu(String plu) {
|
|
|
+ this.plu = plu;
|
|
|
+ }
|
|
|
+
|
|
|
public String getThirdPartyMerchCode() {
|
|
|
return thirdPartyMerchCode;
|
|
|
}
|