fwxxform.java
来自「一个用struts和hibernate架构的房屋出租系统。」· Java 代码 · 共 261 行
JAVA
261 行
package com.accp.forms;
import java.util.Date;
import org.apache.struts.action.ActionForm;
import com.accp.entity.TblFwlx;
import com.accp.entity.TblJd;
import com.accp.entity.TblUser;
public class FwxxForm extends ActionForm
{
public FwxxForm()
{
}
private Integer fwid;
private TblUser tblUser;
private int uid;
private int jdid;
private int [] lxid;
private float minzj;
private float maxzj;
private TblJd tblJd;
private TblFwlx tblFwlx;
private Integer shi;
private Integer ting;
private String fwxx;
private Double zj;
private String title;
private Date date;
private String telephone;
private String lxr;
public Date getDate()
{
return date;
}
public void setDate(Date date)
{
this.date = date;
}
public Integer getFwid()
{
return fwid;
}
public void setFwid(Integer fwid)
{
this.fwid = fwid;
}
public String getFwxx()
{
return fwxx;
}
public void setFwxx(String fwxx)
{
this.fwxx = fwxx;
}
public String getLxr()
{
return lxr;
}
public void setLxr(String lxr)
{
this.lxr = lxr;
}
public Integer getShi()
{
return shi;
}
public void setShi(Integer shi)
{
this.shi = shi;
}
public String getTelephone()
{
return telephone;
}
public void setTelephone(String telephone)
{
this.telephone = telephone;
}
public Integer getTing()
{
return ting;
}
public void setTing(Integer ting)
{
this.ting = ting;
}
public String getTitle()
{
return title;
}
public void setTitle(String title)
{
this.title = title;
}
public Double getZj()
{
return zj;
}
public void setZj(Double zj)
{
this.zj = zj;
}
public FwxxForm(Integer fwid, TblUser tblUser, TblJd tblJd,
TblFwlx tblFwlx, Integer shi, Integer ting, String fwxx, Double zj,
String title, Date date, String telephone, String lxr)
{
this.fwid = fwid;
this.tblUser = tblUser;
this.tblJd = tblJd;
this.tblFwlx = tblFwlx;
this.shi = shi;
this.ting = ting;
this.fwxx = fwxx;
this.zj = zj;
this.title = title;
this.date = date;
this.telephone = telephone;
this.lxr = lxr;
}
public FwxxForm(TblUser tblUser, TblJd tblJd, TblFwlx tblFwlx, Integer shi,
Integer ting, String fwxx, Double zj, String title, Date date,
String telephone, String lxr)
{
this.tblUser = tblUser;
this.tblJd = tblJd;
this.tblFwlx = tblFwlx;
this.shi = shi;
this.ting = ting;
this.fwxx = fwxx;
this.zj = zj;
this.title = title;
this.date = date;
this.telephone = telephone;
this.lxr = lxr;
}
public TblFwlx getTblFwlx()
{
return tblFwlx;
}
public void setTblFwlx(TblFwlx tblFwlx)
{
this.tblFwlx = tblFwlx;
}
public TblJd getTblJd()
{
return tblJd;
}
public void setTblJd(TblJd tblJd)
{
this.tblJd = tblJd;
}
public TblUser getTblUser()
{
return tblUser;
}
public void setTblUser(TblUser tblUser)
{
this.tblUser = tblUser;
}
public int getJdid()
{
return jdid;
}
public void setJdid(int jdid)
{
this.jdid = jdid;
}
public int[] getLxid()
{
return lxid;
}
public void setLxid(int[] lxid)
{
this.lxid = lxid;
}
public int getUid()
{
return uid;
}
public void setUid(int uid)
{
this.uid = uid;
}
public float getMaxzj()
{
return maxzj;
}
public void setMaxzj(float maxzj)
{
this.maxzj = maxzj;
}
public float getMinzj()
{
return minzj;
}
public void setMinzj(float minzj)
{
this.minzj = minzj;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?