ShipDetailBean.java
1.93 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.huaheng.mmsrf.bean;
import java.math.BigDecimal;
/**
* Created by youjie on 2021/3/12
*/
public class ShipDetailBean {
private String no;
private String id;
/**物料名称*/
private String name;
/**工作令*/
private String workno;
private String weight;
private String drawno;
private String principal;
private String code;
private String status;
public ShipDetailBean(String code,String no, String name, String workno, String weight, String drawno, String principal) {
this.code = code;
this.no = no;
this.name = name;
this.workno = workno;
this.weight = weight;
this.drawno = drawno;
this.principal = principal;
}
public String getNo() {
return no;
}
public void setNo(String no) {
this.no = no;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getWorkno() {
return workno;
}
public void setWorkno(String workno) {
this.workno = workno;
}
public String getWeight() {
return weight;
}
public void setWeight(String weight) {
this.weight = weight;
}
public String getDrawno() {
return drawno;
}
public void setDrawno(String drawno) {
this.drawno = drawno;
}
public String getPrincipal() {
return principal;
}
public void setPrincipal(String principal) {
this.principal = principal;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}