📄 relationinfo.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -