📄 operationtype.java
字号:
package com.jn0801.operation;
/**
* operationtype generated by MyEclipse - Hibernate Tools
*/
public class operationtype implements java.io.Serializable {
// Fields
private Long typeid;
private String typename;
private Long npid;
private String nlink;
// Constructors
public String getNlink() {
return nlink;
}
public void setNlink(String nlink) {
this.nlink = nlink;
}
/** default constructor */
public operationtype() {
}
/** full constructor */
public operationtype(String typename, Long npid) {
this.typename = typename;
this.npid = npid;
}
// Property accessors
public Long getTypeid() {
return this.typeid;
}
public void setTypeid(Long typeid) {
this.typeid = typeid;
}
public String getTypename() {
return this.typename;
}
public void setTypename(String typename) {
this.typename = typename;
}
public Long getNpid() {
return this.npid;
}
public void setNpid(Long npid) {
this.npid = npid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -