summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/xml/SN.java
blob: fcb9001523b2e71fcedb4dd5bfcf10210b9acdaf (plain)
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
package com.cmcc.simulator.xml;

import javax.xml.bind.annotation.XmlElement;

public class SN {

	private String sn;
	private int sv;

	public SN() {
		super();
		// TODO Auto-generated constructor stub
	}

	public SN(String sn, int sv) {
		super();
		this.sn = sn;
		this.sv = sv;
	}

	@XmlElement(name = "SN")
	public String getSn() {
		return sn;
	}

	public void setSn(String sn) {
		this.sn = sn;
	}

	@XmlElement(name = "SV")
	public int getSv() {
		return sv;
	}

	public void setSv(int sv) {
		this.sv = sv;
	}

}