serproblemdto.java.svn-base
来自「本例使用Java + Jsp 实现选择树的过程,主要使用Struts+JDBC/」· SVN-BASE 代码 · 共 105 行
SVN-BASE
105 行
/*
* $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 + =
减小字号Ctrl + -
显示快捷键?