-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathProducts.java
57 lines (49 loc) · 1.07 KB
/
Products.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
package mailmergeevent;
import javax.xml.bind.annotation.XmlElement;
public class Products {
private String m_sNO;
private String m_productName;
private String m_productImage;
/**
* Gets the serial number of the product.
*/
@XmlElement(name = "SNO")
public String getSNO() throws Exception {
return m_sNO;
}
/**
* Sets the serial number of the product.
*/
public String setSNO(String value) throws Exception {
m_sNO = value;
return value;
}
/**
* Gets the name of the product.
*/
@XmlElement(name = "ProductName")
public String getProductName() throws Exception {
return m_productName;
}
/**
* Sets the name of the product.
*/
public String setProductName(String value) throws Exception {
m_productName = value;
return value;
}
/**
* Gets the image of the product.
*/
@XmlElement(name = "ProductImage")
public String getProductImage() throws Exception {
return m_productImage;
}
/**
* Sets the image of the product.
*/
public String setProductImage(String value) throws Exception {
m_productImage = value;
return value;
}
}