Files
jshERP/src/main/java/com/jsh/model/po/Unit.java
AlanGao 072599953e update
2018-04-07 13:11:17 +08:00

36 lines
592 B
Java

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