chengfa.java

来自「JSP开发的学生信息管理系统」· Java 代码 · 共 88 行

JAVA
88
字号
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space 
// Source File Name:   Chengfa.java

package mypackage;

import java.io.Serializable;

public class Chengfa
	implements Serializable
{

	private String chengfaName;
	private String studentId;
	private String chengfaType;
	private String chengfaDescript;
	private String chengfaDate;
	int chengfaId;

	public Chengfa()
	{
	}

	public void setChengfaId(int i)
	{
		chengfaId = i;
	}

	public int getChengfaId()
	{
		return chengfaId;
	}

	public void setChengfaName(String s)
		throws Exception
	{
		chengfaName = new String(s.getBytes("iso-8859-1"));
	}

	public String getChengfaName()
	{
		return chengfaName;
	}

	public void setStudentId(String s)
	{
		studentId = s.trim();
	}

	public String getStudentId()
	{
		return studentId;
	}

	public void setChengfaType(String s)
		throws Exception
	{
		chengfaType = new String(s.getBytes("iso-8859-1"));
	}

	public String getChengfaType()
	{
		return chengfaType;
	}

	public void setChengfaDescript(String s)
		throws Exception
	{
		chengfaDescript = new String(s.getBytes("iso-8859-1"));
	}

	public String getChengfaDescript()
	{
		return chengfaDescript;
	}

	public void setChengfaDate(String s)
	{
		chengfaDate = s;
	}

	public String getChengfaDate()
	{
		return chengfaDate;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?