relationinfo.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 70 行
JAVA
70 行
package com.szmx.tlms.admin.model;
import com.szmx.framework.base.model.VersionObject;
import java.io.Serializable;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2006-7-24
* Time: 9:32:16
* To change this template use File | Settings | File Templates.
*/
public class RelationInfo extends VersionObject implements Serializable {
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
private Long id;
private String name;
private Long value;
private Long sort;
private Long fatherValue;
private String dataType;
public String getDataType() {
return dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public Long getValue() {
return value;
}
public void setValue(Long value) {
this.value = value;
}
public Long getSort() {
return sort;
}
public void setSort(Long sort) {
this.sort = sort;
}
public Long getFatherValue() {
return fatherValue;
}
public void setFatherValue(Long fatherValue) {
this.fatherValue = fatherValue;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?