-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStockDetails.java
92 lines (79 loc) · 1.68 KB
/
StockDetails.java
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
package updatefields;
import javax.xml.bind.annotation.XmlElement;
public class StockDetails {
private String m_tradeNo;
private String m_companyName;
private String m_costPrice;
private String m_sharesCount;
private String m_salesPrice;
/**
* Gets the trade number.
*/
@XmlElement(name = "TradeNo")
public String getTradeNo() throws Exception {
return m_tradeNo;
}
/**
* Sets the trade number.
*/
public String setTradeNo(String value) throws Exception {
m_tradeNo = value;
return value;
}
/**
* Gets the name of the company.
*/
@XmlElement(name = "CompanyName")
public String getCompanyName() throws Exception {
return m_companyName;
}
/**
* Sets the name of the company.
*/
public String setCompanyName(String value) throws Exception {
m_companyName = value;
return value;
}
/**
* Gets the cost price.
*/
@XmlElement(name = "CostPrice")
public String getCostPrice() throws Exception {
return m_costPrice;
}
/**
* Sets the cost price.
*/
public String setCostPrice(String value) throws Exception {
m_costPrice = value;
return value;
}
/**
* Gets the total count of the share.
*/
@XmlElement(name = "SharesCount")
public String getSharesCount() throws Exception {
return m_sharesCount;
}
/**
* Sets the total count of the share.
*/
public String setSharesCount(String value) throws Exception {
m_sharesCount = value;
return value;
}
/**
* Gets the sales price.
*/
@XmlElement(name = "SalesPrice")
public String getSalesPrice() throws Exception {
return m_salesPrice;
}
/**
* Sets the sales price.
*/
public String setSalesPrice(String value) throws Exception {
m_salesPrice = value;
return value;
}
}