initial commit

This commit is contained in:
chenjinsong
2018-09-27 16:21:05 +08:00
commit dc91c4c987
2011 changed files with 408920 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package nis.nms.domains;
import java.util.List;
public class MetadataDictionaryVO {
private Long mId;
private String filedComments;
private List<OptionTable> listOT;
public Long getmId() {
return mId;
}
public void setmId(Long mId) {
this.mId = mId;
}
public List<OptionTable> getListOT() {
return listOT;
}
public void setListOT(List<OptionTable> listOT) {
this.listOT = listOT;
}
public String getFiledComments() {
return filedComments;
}
public void setFiledComments(String filedComments) {
this.filedComments = filedComments;
}
}