📄 serproblemdto.java
字号:
/*
* $Workfile: SerProblemDto.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.business.dto;
public class SerProblemDto
{
private String problemGuid;
private String problemName;
private String description;
private Long inactive;
private String parentProblemGuid;
private Long levelNo;
private String parentName;
// 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;
}
public String getParentName()
{
return parentName;
}
public void setParentName(String parentName)
{
this.parentName = parentName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -