1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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;
}
}