This commit is contained in:
AlanGao
2018-04-07 13:11:17 +08:00
parent 458409b463
commit 072599953e
205 changed files with 13055 additions and 15164 deletions

View File

@@ -1,39 +1,36 @@
package com.jsh.model.po;
@SuppressWarnings("serial")
public class Unit implements java.io.Serializable
{
private Long id;
private String UName;
public class Unit implements java.io.Serializable {
private Long id;
private String UName;
public Unit()
{
public Unit() {
}
}
public Unit(Long id) {
this.id = id;
}
public Unit(Long id) {
this.id = id;
}
public Unit(String UName)
{
this.UName = UName;
}
public Unit(String UName) {
this.UName = UName;
}
public Long getId() {
return id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public void setId(Long id) {
this.id = id;
}
public String getUName() {
return UName;
}
public String getUName() {
return UName;
}
public void setUName(String UName) {
this.UName = UName;
}
public void setUName(String UName) {
this.UName = UName;
}
}