📄 caltypes.java
字号:
package com.myoa.cal.model;
public class CalTypes{
// Fields
private Integer typeid;
private Integer userid;
private Integer isglobal;
private String eventype;
// Constructors
/** default constructor */
public CalTypes() {
}
/** minimal constructor */
public CalTypes(Integer typeid, Integer userid, String eventype) {
this.typeid = typeid;
this.userid = userid;
this.eventype = eventype;
}
/** full constructor */
public CalTypes(Integer typeid, Integer userid, Integer isglobal,
String eventype) {
this.typeid = typeid;
this.userid = userid;
this.isglobal = isglobal;
this.eventype = eventype;
}
// Property accessors
public Integer getTypeid() {
return this.typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
public Integer getUserid() {
return this.userid;
}
public void setUserid(Integer userid) {
this.userid = userid;
}
public Integer getIsglobal() {
return this.isglobal;
}
public void setIsglobal(Integer isglobal) {
this.isglobal = isglobal;
}
public String getEventype() {
return this.eventype;
}
public void setEventype(String eventype) {
this.eventype = eventype;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -