java毕业设计_售楼处楼房管理系统

在这里插入图片描述
售楼处楼房管理系统mysql数据库创建语句
售楼处楼房管理系统oracle数据库创建语句
售楼处楼房管理系统sqlserver数据库创建语句
售楼处楼房管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计
售楼处楼房管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计
售楼处楼房管理系统登录注册界面
售楼处楼房管理系统mysql数据库版本源码:
超级管理员表创建语句如下:

create table t_admin(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘超级管理员账号’,
password varchar(100) comment ‘超级管理员密码’
) comment ‘超级管理员’;
insert into t_admin(username,password) values(‘admin’,‘123456’);
SQLCopy
用户表创建语句如下:

create table t_customer(
id int primary key auto_increment comment ‘主键’,
customerName varchar(100) comment ‘姓名’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’,
sfz varchar(100) comment ‘身份证’
) comment ‘用户’;
SQLCopy
楼房表创建语句如下:

create table t_lf(
id int primary key auto_increment comment ‘主键’,
lfName varchar(100) comment ‘内部楼房编号’,
lh varchar(100) comment ‘楼号’,
dy varchar(100) comment ‘单元’,
lc varchar(100) comment ‘楼层’,
mh varchar(100) comment ‘门号’,
mj int comment ‘面积’,
fx varchar(100) comment ‘几室几厅’,
fee int comment ‘面积单价’,
status varchar(100) comment ‘状态’,
customerName varchar(100) comment ‘姓名’,
phone varchar(100) comment ‘电话’,
hzsfz varchar(100) comment ‘户主身份证’
) comment ‘楼房’;
SQLCopy
普通管理员表创建语句如下:

create table t_ptadmin(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘账号’,
password varchar(100) comment ‘密码’,
ptadminName varchar(100) comment ‘姓名’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’
) comment ‘普通管理员’;
SQLCopy
退房记录表创建语句如下:

create table t_tfjl(
id int primary key auto_increment comment ‘主键’,
lfName varchar(100) comment ‘内部楼房编号’,
lh varchar(100) comment ‘楼号’,
dy varchar(100) comment ‘单元’,
lc varchar(100) comment ‘楼层’,
mh varchar(100) comment ‘门号’,
mj int comment ‘面积’,
fx varchar(100) comment ‘几室几厅’,
fee int comment ‘面积单价’,
content varchar(100) comment ‘退房说明’,
customerName varchar(100) comment ‘姓名’,
phone varchar(100) comment ‘电话’,
tfrsfz varchar(100) comment ‘退房人身份证’,
czr varchar(100) comment ‘经办人’
) comment ‘退房记录’;
SQLCopy
问题楼房表创建语句如下:

create table t_wtlf(
id int primary key auto_increment comment ‘主键’,
lfName varchar(100) comment ‘内部楼房编号’,
lh varchar(100) comment ‘楼号’,
dy varchar(100) comment ‘单元’,
lc varchar(100) comment ‘楼层’,
mh varchar(100) comment ‘门号’,
mj int comment ‘面积’,
fx varchar(100) comment ‘几室几厅’,
fee int comment ‘面积单价’,
content varchar(100) comment ‘问题说明’,
fxrq datetime comment ‘发现日期’
) comment ‘问题楼房’;
SQLCopy
售楼处楼房管理系统oracle数据库版本源码:
超级管理员表创建语句如下:

create table t_admin(
id integer,
username varchar(100),
password varchar(100)
);
insert into t_admin(id,username,password) values(1,‘admin’,‘123456’);
–超级管理员字段加注释
comment on column t_admin.id is ‘主键’;
comment on column t_admin.username is ‘超级管理员账号’;
comment on column t_admin.password is ‘超级管理员密码’;
–超级管理员表加注释
comment on table t_admin is ‘超级管理员’;
SQLCopy
用户表创建语句如下:

create table t_customer(
id integer,
customerName varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100),
sfz varchar(100)
);
–用户字段加注释
comment on column t_customer.id is ‘主键’;
comment on column t_customer.customerName is ‘姓名’;
comment on column t_customer.phone is ‘电话’;
comment on column t_customer.age is ‘年龄’;
comment on column t_customer.sex is ‘性别’;
comment on column t_customer.sfz is ‘身份证’;
–用户表加注释
comment on table t_customer is ‘用户’;
SQLCopy
楼房表创建语句如下:

create table t_lf(
id integer,
lfName varchar(100),
lh varchar(100),
dy varchar(100),
lc varchar(100),
mh varchar(100),
mj int,
fx varchar(100),
fee int,
status varchar(100),
customerName varchar(100),
phone varchar(100),
hzsfz varchar(100)
);
–楼房字段加注释
comment on column t_lf.id is ‘主键’;
comment on column t_lf.lfName is ‘内部楼房编号’;
comment on column t_lf.lh is ‘楼号’;
comment on column t_lf.dy is ‘单元’;
comment on column t_lf.lc is ‘楼层’;
comment on column t_lf.mh is ‘门号’;
comment on column t_lf.mj is ‘面积’;
comment on column t_lf.fx is ‘几室几厅’;
comment on column t_lf.fee is ‘面积单价’;
comment on column t_lf.status is ‘状态’;
comment on column t_lf.customerName is ‘姓名’;
comment on column t_lf.phone is ‘电话’;
comment on column t_lf.hzsfz is ‘户主身份证’;
–楼房表加注释
comment on table t_lf is ‘楼房’;
SQLCopy
普通管理员表创建语句如下:

create table t_ptadmin(
id integer,
username varchar(100),
password varchar(100),
ptadminName varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100)
);
–普通管理员字段加注释
comment on column t_ptadmin.id is ‘主键’;
comment on column t_ptadmin.username is ‘账号’;
comment on column t_ptadmin.password is ‘密码’;
comment on column t_ptadmin.ptadminName is ‘姓名’;
comment on column t_ptadmin.phone is ‘电话’;
comment on column t_ptadmin.age is ‘年龄’;
comment on column t_ptadmin.sex is ‘性别’;
–普通管理员表加注释
comment on table t_ptadmin is ‘普通管理员’;
SQLCopy
退房记录表创建语句如下:

create table t_tfjl(
id integer,
lfName varchar(100),
lh varchar(100),
dy varchar(100),
lc varchar(100),
mh varchar(100),
mj int,
fx varchar(100),
fee int,
content varchar(100),
customerName varchar(100),
phone varchar(100),
tfrsfz varchar(100),
czr varchar(100)
);
–退房记录字段加注释
comment on column t_tfjl.id is ‘主键’;
comment on column t_tfjl.lfName is ‘内部楼房编号’;
comment on column t_tfjl.lh is ‘楼号’;
comment on column t_tfjl.dy is ‘单元’;
comment on column t_tfjl.lc is ‘楼层’;
comment on column t_tfjl.mh is ‘门号’;
comment on column t_tfjl.mj is ‘面积’;
comment on column t_tfjl.fx is ‘几室几厅’;
comment on column t_tfjl.fee is ‘面积单价’;
comment on column t_tfjl.content is ‘退房说明’;
comment on column t_tfjl.customerName is ‘姓名’;
comment on column t_tfjl.phone is ‘电话’;
comment on column t_tfjl.tfrsfz is ‘退房人身份证’;
comment on column t_tfjl.czr is ‘经办人’;
–退房记录表加注释
comment on table t_tfjl is ‘退房记录’;
SQLCopy
问题楼房表创建语句如下:

create table t_wtlf(
id integer,
lfName varchar(100),
lh varchar(100),
dy varchar(100),
lc varchar(100),
mh varchar(100),
mj int,
fx varchar(100),
fee int,
content varchar(100),
fxrq datetime
);
–问题楼房字段加注释
comment on column t_wtlf.id is ‘主键’;
comment on column t_wtlf.lfName is ‘内部楼房编号’;
comment on column t_wtlf.lh is ‘楼号’;
comment on column t_wtlf.dy is ‘单元’;
comment on column t_wtlf.lc is ‘楼层’;
comment on column t_wtlf.mh is ‘门号’;
comment on column t_wtlf.mj is ‘面积’;
comment on column t_wtlf.fx is ‘几室几厅’;
comment on column t_wtlf.fee is ‘面积单价’;
comment on column t_wtlf.content is ‘问题说明’;
comment on column t_wtlf.fxrq is ‘发现日期’;
–问题楼房表加注释
comment on table t_wtlf is ‘问题楼房’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_customer;
create sequence s_t_lf;
create sequence s_t_ptadmin;
create sequence s_t_tfjl;
create sequence s_t_wtlf;
SQLCopy
售楼处楼房管理系统sqlserver数据库版本源码:
超级管理员表创建语句如下:

–超级管理员
create table t_admin(
id int identity(1,1) primary key not null,–主键
username varchar(100),–超级管理员账号
password varchar(100)–超级管理员密码
);
insert into t_admin(username,password) values(‘admin’,‘123456’);
SQLCopy
用户表创建语句如下:

–用户表注释
create table t_customer(
id int identity(1,1) primary key not null,–主键
customerName varchar(100),–姓名
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100),–性别
sfz varchar(100)–身份证
);
SQLCopy
楼房表创建语句如下:

–楼房表注释
create table t_lf(
id int identity(1,1) primary key not null,–主键
lfName varchar(100),–内部楼房编号
lh varchar(100),–楼号
dy varchar(100),–单元
lc varchar(100),–楼层
mh varchar(100),–门号
mj int,–面积
fx varchar(100),–几室几厅
fee int,–面积单价
status varchar(100),–状态
customerName varchar(100),–姓名
phone varchar(100),–电话
hzsfz varchar(100)–户主身份证
);
SQLCopy
普通管理员表创建语句如下:

–普通管理员表注释
create table t_ptadmin(
id int identity(1,1) primary key not null,–主键
username varchar(100),–账号
password varchar(100),–密码
ptadminName varchar(100),–姓名
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100)–性别
);
SQLCopy
退房记录表创建语句如下:

–退房记录表注释
create table t_tfjl(
id int identity(1,1) primary key not null,–主键
lfName varchar(100),–内部楼房编号
lh varchar(100),–楼号
dy varchar(100),–单元
lc varchar(100),–楼层
mh varchar(100),–门号
mj int,–面积
fx varchar(100),–几室几厅
fee int,–面积单价
content varchar(100),–退房说明
customerName varchar(100),–姓名
phone varchar(100),–电话
tfrsfz varchar(100),–退房人身份证
czr varchar(100)–经办人
);
SQLCopy
问题楼房表创建语句如下:

–问题楼房表注释
create table t_wtlf(
id int identity(1,1) primary key not null,–主键
lfName varchar(100),–内部楼房编号
lh varchar(100),–楼号
dy varchar(100),–单元
lc varchar(100),–楼层
mh varchar(100),–门号
mj int,–面积
fx varchar(100),–几室几厅
fee int,–面积单价
content varchar(100),–问题说明
fxrq datetime–发现日期
);
SQLCopy
售楼处楼房管理系统登录后主页
售楼处楼房管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计:
用户javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//用户
@Table(name = “t_customer”)
public class Customer {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//姓名
private String customerName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//身份证
private String sfz;
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getSfz() {return sfz;}
public void setSfz(String sfz) {this.sfz = sfz;}
}
JavaCopy
楼房javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//楼房
@Table(name = “t_lf”)
public class Lf {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//状态
private String status;
//姓名
private String customerName;
//电话
private String phone;
//户主身份证
private String hzsfz;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getHzsfz() {return hzsfz;}
public void setHzsfz(String hzsfz) {this.hzsfz = hzsfz;}
}
JavaCopy
普通管理员javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//普通管理员
@Table(name = “t_ptadmin”)
public class Ptadmin {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String ptadminName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getPtadminName() {return ptadminName;}
public void setPtadminName(String ptadminName) {this.ptadminName = ptadminName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
}
JavaCopy
退房记录javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//退房记录
@Table(name = “t_tfjl”)
public class Tfjl {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//退房说明
private String content;
//姓名
private String customerName;
//电话
private String phone;
//退房人身份证
private String tfrsfz;
//经办人
private String czr;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getTfrsfz() {return tfrsfz;}
public void setTfrsfz(String tfrsfz) {this.tfrsfz = tfrsfz;}
public String getCzr() {return czr;}
public void setCzr(String czr) {this.czr = czr;}
}
JavaCopy
问题楼房javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//问题楼房
@Table(name = “t_wtlf”)
public class Wtlf {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//问题说明
private String content;
//发现日期
private Date fxrq;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getFxrq() {return fxrq;}
public void setFxrq(Date fxrq) {this.fxrq = fxrq;}
}
JavaCopy
售楼处楼房管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
用户javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//用户
public class Customer extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//姓名
private String customerName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//身份证
private String sfz;
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getSfz() {return sfz;}
public void setSfz(String sfz) {this.sfz = sfz;}
}
JavaCopy
楼房javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//楼房
public class Lf extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//状态
private String status;
//姓名
private String customerName;
//电话
private String phone;
//户主身份证
private String hzsfz;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getHzsfz() {return hzsfz;}
public void setHzsfz(String hzsfz) {this.hzsfz = hzsfz;}
}
JavaCopy
普通管理员javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//普通管理员
public class Ptadmin extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String ptadminName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getPtadminName() {return ptadminName;}
public void setPtadminName(String ptadminName) {this.ptadminName = ptadminName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
}
JavaCopy
退房记录javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//退房记录
public class Tfjl extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//退房说明
private String content;
//姓名
private String customerName;
//电话
private String phone;
//退房人身份证
private String tfrsfz;
//经办人
private String czr;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getTfrsfz() {return tfrsfz;}
public void setTfrsfz(String tfrsfz) {this.tfrsfz = tfrsfz;}
public String getCzr() {return czr;}
public void setCzr(String czr) {this.czr = czr;}
}
JavaCopy
问题楼房javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//问题楼房
public class Wtlf extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//内部楼房编号
private String lfName;
//楼号
private String lh;
//单元
private String dy;
//楼层
private String lc;
//门号
private String mh;
//面积
private Integer mj;
//几室几厅
private String fx;
//面积单价
private Integer fee;
//问题说明
private String content;
//发现日期
private Date fxrq;
public String getLfName() {return lfName;}
public void setLfName(String lfName) {this.lfName = lfName;}
public String getLh() {return lh;}
public void setLh(String lh) {this.lh = lh;}
public String getDy() {return dy;}
public void setDy(String dy) {this.dy = dy;}
public String getLc() {return lc;}
public void setLc(String lc) {this.lc = lc;}
public String getMh() {return mh;}
public void setMh(String mh) {this.mh = mh;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getFx() {return fx;}
public void setFx(String fx) {this.fx = fx;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getFxrq() {return fxrq;}
public void setFxrq(Date fxrq) {this.fxrq = fxrq;}
}

发布了58 篇原创文章 · 获赞 19 · 访问量 8916

猜你喜欢

转载自blog.csdn.net/biyesheji_/article/details/104468238