Commodity2FindResponse.java
1.77 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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.drp.contract.response;
import com.drp.contract.domain.Commodity2;
import com.xiniunet.sdk.XiniuResponse;
import com.xiniunet.sdk.drp.domain.Commodity;
import com.xiniunet.sdk.drp.response.CommodityFindResponse;
import java.util.List;
public class Commodity2FindResponse extends XiniuResponse {
private static final long serialVersionUID = 1L;
private Long classId;
private String number;
private String name;
private String quickCode;
private String shortName;
private long totalCount;
public List<Commodity2> getResult() {
return result;
}
public void setResult(List<Commodity2> result) {
this.result = result;
}
private List<Commodity2> result;
public Commodity2FindResponse() {
}
public Long getClassId() {
return this.classId;
}
public void setClassId(Long classId) {
this.classId = classId;
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getQuickCode() {
return this.quickCode;
}
public void setQuickCode(String quickCode) {
this.quickCode = quickCode;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(long totalCount) {
this.totalCount = totalCount;
}
}