📄 tserproblemdefine.java
字号:
/*
* $Workfile: TSerProblemDefine.java$
* Copyright (c) 2007 Jama, International.
* All rights reserved.
* Creator Jun
* Last Changed by: $Author: Jun$
* On: $Date: 2007-8-30 下午09:52:37$
* $Revision: 1$
*/
package com.jama.rcrm.service.dao.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* TSerProblemDefine generated by MyEclipse - Hibernate Tools
*/
public class TSerProblemDefine implements java.io.Serializable {
// Fields
private String problemGuid;
private String problemName;
private String description;
private Long inactive;
private String parentProblemGuid;
private Long levelNo;
// Constructors
/** default constructor */
public TSerProblemDefine() {
}
/** full constructor */
public TSerProblemDefine(String problemName, String description, Long inactive, String parentProblemGuid, Long levelNo) {
this.problemName = problemName;
this.description = description;
this.inactive = inactive;
this.parentProblemGuid = parentProblemGuid;
this.levelNo = levelNo;
}
// Property accessors
public String getProblemGuid() {
return this.problemGuid;
}
public void setProblemGuid(String problemGuid) {
this.problemGuid = problemGuid;
}
public String getProblemName() {
return this.problemName;
}
public void setProblemName(String problemName) {
this.problemName = problemName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getInactive() {
return this.inactive;
}
public void setInactive(Long inactive) {
this.inactive = inactive;
}
public String getParentProblemGuid() {
return this.parentProblemGuid;
}
public void setParentProblemGuid(String parentProblemGuid) {
this.parentProblemGuid = parentProblemGuid;
}
public Long getLevelNo() {
return this.levelNo;
}
public void setLevelNo(Long levelNo) {
this.levelNo = levelNo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -