Goods.java 1.37 KB
package com.yanzuoguang.wxxcx.immediateDelivery.vo;

/***
 * 货物列表
 *
 * @author:heyanou
 */
public class Goods {

    /**
     * <b>是否必填:是</b>
     * <b>货物数量</b>
     */
  private Long    good_count;//	number		是	货物数量

    /**
     * <b>是否必填:是</b>
     * <b>货品名称</b>
     */
  private String  good_name;//	string		是

    /**
     * <b>是否必填:否</b>
     * <b>货品单价,精确到小数点后两位(如果小数点后位数多于两位,则四舍五入保留两位小数)</b>
     */
  private float   good_price;//	number

    /**
     * <b>是否必填:否</b>
     * <b>货品单位,最长不超过20个字符</b>
     */
  private String  good_unit;//	string		否

    public Long getGood_count() {
        return good_count;
    }

    public void setGood_count(Long good_count) {
        this.good_count = good_count;
    }

    public String getGood_name() {
        return good_name;
    }

    public void setGood_name(String good_name) {
        this.good_name = good_name;
    }

    public float getGood_price() {
        return good_price;
    }

    public void setGood_price(float good_price) {
        this.good_price = good_price;
    }

    public String getGood_unit() {
        return good_unit;
    }

    public void setGood_unit(String good_unit) {
        this.good_unit = good_unit;
    }
}