123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- package com.kmall.admin.dto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @author Scott
- * @email
- * @date 2019-10-18 10:41:08
- */
- public class StoreGoodsDto implements Serializable {
- private static final long serialVersionUID = 1L;
- private String storeName;
- private String specification;
- private String stockNum;
- private String goodsSn;
- private String retailPrice;
- private String marketPrice;
- private String goodsBizType;
- private String categoryName;
- private String attributeCategory;
- private String brandName;
- private String freightName;
- private String supplierThirdCode;
- private String bottomLinePrice;//底线价
- private String batchSn;//批次编号
- private String uniqueIdentifier;
- /**
- * 出区数
- */
- private String exitRegionNumber;
- public String getBatchSn() {
- return batchSn;
- }
- public void setBatchSn(String batchSn) {
- this.batchSn = batchSn;
- }
- public String getBottomLinePrice() {
- return bottomLinePrice;
- }
- public void setBottomLinePrice(String bottomLinePrice) {
- this.bottomLinePrice = bottomLinePrice;
- }
- public String getStoreName() {
- return storeName;
- }
- public void setStoreName(String storeName) {
- this.storeName = storeName;
- }
- public String getSpecification() {
- return specification;
- }
- public void setSpecification(String specification) {
- this.specification = specification;
- }
- public String getStockNum() {
- return stockNum;
- }
- public void setStockNum(String stockNum) {
- this.stockNum = stockNum;
- }
- public String getGoodsSn() {
- return goodsSn;
- }
- public void setGoodsSn(String goodsSn) {
- this.goodsSn = goodsSn;
- }
- public String getRetailPrice() {
- return retailPrice;
- }
- public void setRetailPrice(String retailPrice) {
- this.retailPrice = retailPrice;
- }
- public String getMarketPrice() {
- return marketPrice;
- }
- public void setMarketPrice(String marketPrice) {
- this.marketPrice = marketPrice;
- }
- public String getGoodsBizType() {
- return goodsBizType;
- }
- public void setGoodsBizType(String goodsBizType) {
- this.goodsBizType = goodsBizType;
- }
- public String getCategoryName() {
- return categoryName;
- }
- public void setCategoryName(String categoryName) {
- this.categoryName = categoryName;
- }
- public String getAttributeCategory() {
- return attributeCategory;
- }
- public void setAttributeCategory(String attributeCategory) {
- this.attributeCategory = attributeCategory;
- }
- public String getBrandName() {
- return brandName;
- }
- public void setBrandName(String brandName) {
- this.brandName = brandName;
- }
- public String getFreightName() {
- return freightName;
- }
- public void setFreightName(String freightName) {
- this.freightName = freightName;
- }
- public String getSupplierThirdCode() {
- return supplierThirdCode;
- }
- public void setSupplierThirdCode(String supplierThirdCode) {
- this.supplierThirdCode = supplierThirdCode;
- }
- public String getUniqueIdentifier() {
- return uniqueIdentifier;
- }
- public void setUniqueIdentifier(String uniqueIdentifier) {
- this.uniqueIdentifier = uniqueIdentifier;
- }
- public String getExitRegionNumber() {
- return exitRegionNumber;
- }
- public void setExitRegionNumber(String exitRegionNumber) {
- this.exitRegionNumber = exitRegionNumber;
- }
- }
|