- 海宁市圣隆皮草有限公司员工管理信息系统的设计mysql数据库创建语句
- 海宁市圣隆皮草有限公司员工管理信息系统的设计oracle数据库创建语句
- 海宁市圣隆皮草有限公司员工管理信息系统的设计sqlserver数据库创建语句
- 海宁市圣隆皮草有限公司员工管理信息系统的设计spring+springMVC+hibernate框架对象(javaBean,pojo)设计
- 海宁市圣隆皮草有限公司员工管理信息系统的设计spring+springMVC+mybatis框架对象(javaBean,pojo)设计
登录注册界面.jpg?x-oss-process=style/00001)
海宁市圣隆皮草有限公司员工管理信息系统的设计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');
员工表创建语句如下:
create table t_customer(
id int primary key auto_increment comment '主键',
username varchar(100) comment '账号',
password varchar(100) comment '密码',
customerName varchar(100) comment '姓名',
headPic varchar(100) comment '头像',
phone varchar(100) comment '电话',
age varchar(100) comment '年龄',
sex varchar(100) comment '性别'
) comment '员工';
公告表创建语句如下:
create table t_gg(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
pic varchar(100) comment '图片',
cotnent varchar(100) comment '内容',
showDate datetime comment '日期'
) comment '公告';
个人通知表创建语句如下:
create table t_grtz(
id int primary key auto_increment comment '主键',
customerId int comment '员工',
title varchar(100) comment '标题',
content varchar(100) comment '内容',
insertDate datetime comment '日期'
) comment '个人通知';
员工工资表创建语句如下:
create table t_gz(
id int primary key auto_increment comment '主键',
customerId int comment '员工',
yf varchar(100) comment '月份',
jbgz int comment '按天基本工资',
jj int comment '奖金',
cf int comment '惩罚金额',
wxyj int comment '五险一金',
qqj int comment '全勤奖',
qbgz int comment '全部工资'
) comment '员工工资';
考勤表创建语句如下:
create table t_kq(
id int primary key auto_increment comment '主键',
customerId int comment '员工',
showDate datetime comment '考勤日期'
) comment '考勤';
领导表创建语句如下:
create table t_ld(
id int primary key auto_increment comment '主键',
username varchar(100) comment '账号',
password varchar(100) comment '密码',
ldName varchar(100) comment '姓名',
headPic varchar(100) comment '头像',
phone varchar(100) comment '电话',
age varchar(100) comment '年龄',
sex varchar(100) comment '性别'
) comment '领导';
业务审批表创建语句如下:
create table t_sp(
id int primary key auto_increment comment '主键',
customerId int comment '员工',
spName varchar(100) comment '审批标题',
fileUlr varchar(100) comment '附件',
pic varchar(100) comment '图片',
content varchar(100) comment '内容',
insertDate datetime comment '发起日期',
back varchar(100) comment '回复内容',
backDate datetime comment '审批时间',
status varchar(100) comment '状态'
) comment '业务审批';
海宁市圣隆皮草有限公司员工管理信息系统的设计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 '超级管理员';
员工表创建语句如下:
create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
headPic varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100)
);
--员工字段加注释
comment on column t_customer.id is '主键';
comment on column t_customer.username is '账号';
comment on column t_customer.password is '密码';
comment on column t_customer.customerName is '姓名';
comment on column t_customer.headPic is '头像';
comment on column t_customer.phone is '电话';
comment on column t_customer.age is '年龄';
comment on column t_customer.sex is '性别';
--员工表加注释
comment on table t_customer is '员工';
公告表创建语句如下:
create table t_gg(
id integer,
title varchar(100),
pic varchar(100),
cotnent varchar(100),
showDate datetime
);
--公告字段加注释
comment on column t_gg.id is '主键';
comment on column t_gg.title is '标题';
comment on column t_gg.pic is '图片';
comment on column t_gg.cotnent is '内容';
comment on column t_gg.showDate is '日期';
--公告表加注释
comment on table t_gg is '公告';
个人通知表创建语句如下:
create table t_grtz(
id integer,
customerId int,
title varchar(100),
content varchar(100),
insertDate datetime
);
--个人通知字段加注释
comment on column t_grtz.id is '主键';
comment on column t_grtz.customerId is '员工';
comment on column t_grtz.title is '标题';
comment on column t_grtz.content is '内容';
comment on column t_grtz.insertDate is '日期';
--个人通知表加注释
comment on table t_grtz is '个人通知';
员工工资表创建语句如下:
create table t_gz(
id integer,
customerId int,
yf varchar(100),
jbgz int,
jj int,
cf int,
wxyj int,
qqj int,
qbgz int
);
--员工工资字段加注释
comment on column t_gz.id is '主键';
comment on column t_gz.customerId is '员工';
comment on column t_gz.yf is '月份';
comment on column t_gz.jbgz is '按天基本工资';
comment on column t_gz.jj is '奖金';
comment on column t_gz.cf is '惩罚金额';
comment on column t_gz.wxyj is '五险一金';
comment on column t_gz.qqj is '全勤奖';
comment on column t_gz.qbgz is '全部工资';
--员工工资表加注释
comment on table t_gz is '员工工资';
考勤表创建语句如下:
create table t_kq(
id integer,
customerId int,
showDate datetime
);
--考勤字段加注释
comment on column t_kq.id is '主键';
comment on column t_kq.customerId is '员工';
comment on column t_kq.showDate is '考勤日期';
--考勤表加注释
comment on table t_kq is '考勤';
领导表创建语句如下:
create table t_ld(
id integer,
username varchar(100),
password varchar(100),
ldName varchar(100),
headPic varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100)
);
--领导字段加注释
comment on column t_ld.id is '主键';
comment on column t_ld.username is '账号';
comment on column t_ld.password is '密码';
comment on column t_ld.ldName is '姓名';
comment on column t_ld.headPic is '头像';
comment on column t_ld.phone is '电话';
comment on column t_ld.age is '年龄';
comment on column t_ld.sex is '性别';
--领导表加注释
comment on table t_ld is '领导';
业务审批表创建语句如下:
create table t_sp(
id integer,
customerId int,
spName varchar(100),
fileUlr varchar(100),
pic varchar(100),
content varchar(100),
insertDate datetime,
back varchar(100),
backDate datetime,
status varchar(100)
);
--业务审批字段加注释
comment on column t_sp.id is '主键';
comment on column t_sp.customerId is '员工';
comment on column t_sp.spName is '审批标题';
comment on column t_sp.fileUlr is '附件';
comment on column t_sp.pic is '图片';
comment on column t_sp.content is '内容';
comment on column t_sp.insertDate is '发起日期';
comment on column t_sp.back is '回复内容';
comment on column t_sp.backDate is '审批时间';
comment on column t_sp.status is '状态';
--业务审批表加注释
comment on table t_sp is '业务审批';
oracle特有,对应序列如下:
create sequence s_t_customer;
create sequence s_t_gg;
create sequence s_t_grtz;
create sequence s_t_gz;
create sequence s_t_kq;
create sequence s_t_ld;
create sequence s_t_sp;
海宁市圣隆皮草有限公司员工管理信息系统的设计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');
员工表创建语句如下:
--员工表注释
create table t_customer(
id int identity(1,1) primary key not null,--主键
username varchar(100),--账号
password varchar(100),--密码
customerName varchar(100),--姓名
headPic varchar(100),--头像
phone varchar(100),--电话
age varchar(100),--年龄
sex varchar(100)--性别
);
公告表创建语句如下:
--公告表注释
create table t_gg(
id int identity(1,1) primary key not null,--主键
title varchar(100),--标题
pic varchar(100),--图片
cotnent varchar(100),--内容
showDate datetime--日期
);
个人通知表创建语句如下:
--个人通知表注释
create table t_grtz(
id int identity(1,1) primary key not null,--主键
customerId int,--员工
title varchar(100),--标题
content varchar(100),--内容
insertDate datetime--日期
);
员工工资表创建语句如下:
--员工工资表注释
create table t_gz(
id int identity(1,1) primary key not null,--主键
customerId int,--员工
yf varchar(100),--月份
jbgz int,--按天基本工资
jj int,--奖金
cf int,--惩罚金额
wxyj int,--五险一金
qqj int,--全勤奖
qbgz int--全部工资
);
考勤表创建语句如下:
--考勤表注释
create table t_kq(
id int identity(1,1) primary key not null,--主键
customerId int,--员工
showDate datetime--考勤日期
);
领导表创建语句如下:
--领导表注释
create table t_ld(
id int identity(1,1) primary key not null,--主键
username varchar(100),--账号
password varchar(100),--密码
ldName varchar(100),--姓名
headPic varchar(100),--头像
phone varchar(100),--电话
age varchar(100),--年龄
sex varchar(100)--性别
);
业务审批表创建语句如下:
--业务审批表注释
create table t_sp(
id int identity(1,1) primary key not null,--主键
customerId int,--员工
spName varchar(100),--审批标题
fileUlr varchar(100),--附件
pic varchar(100),--图片
content varchar(100),--内容
insertDate datetime,--发起日期
back varchar(100),--回复内容
backDate datetime,--审批时间
status varchar(100)--状态
);
登录后主页.jpg?x-oss-process=style/00001)
海宁市圣隆皮草有限公司员工管理信息系统的设计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 username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
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;}
}
公告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_gg")
public class Gg {
//主键
@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 title;
//图片
private String pic;
//内容
private String cotnent;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getCotnent() {return cotnent;}
public void setCotnent(String cotnent) {this.cotnent = cotnent;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
个人通知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_grtz")
public class Grtz {
//主键
@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 Integer customerId;
//标题
private String title;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}
员工工资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_gz")
public class Gz {
//主键
@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 Integer customerId;
//月份
private String yf;
//按天基本工资
private Integer jbgz;
//奖金
private Integer jj;
//惩罚金额
private Integer cf;
//五险一金
private Integer wxyj;
//全勤奖
private Integer qqj;
//全部工资
private Integer qbgz;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
public Integer getJbgz() {return jbgz;}
public void setJbgz(Integer jbgz) {this.jbgz = jbgz;}
public Integer getJj() {return jj;}
public void setJj(Integer jj) {this.jj = jj;}
public Integer getCf() {return cf;}
public void setCf(Integer cf) {this.cf = cf;}
public Integer getWxyj() {return wxyj;}
public void setWxyj(Integer wxyj) {this.wxyj = wxyj;}
public Integer getQqj() {return qqj;}
public void setQqj(Integer qqj) {this.qqj = qqj;}
public Integer getQbgz() {return qbgz;}
public void setQbgz(Integer qbgz) {this.qbgz = qbgz;}
}
考勤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_kq")
public class Kq {
//主键
@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 Integer customerId;
//考勤日期
private Date showDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
领导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_ld")
public class Ld {
//主键
@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 ldName;
//头像
private String headPic;
//电话
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 getLdName() {return ldName;}
public void setLdName(String ldName) {this.ldName = ldName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
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;}
}
业务审批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_sp")
public class Sp {
//主键
@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 Integer customerId;
//审批标题
private String spName;
//附件
private String fileUlr;
//图片
private String pic;
//内容
private String content;
//发起日期
private Date insertDate;
//回复内容
private String back;
//审批时间
private Date backDate;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
public String getFileUlr() {return fileUlr;}
public void setFileUlr(String fileUlr) {this.fileUlr = fileUlr;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
海宁市圣隆皮草有限公司员工管理信息系统的设计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 username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
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;}
}
公告javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//公告
public class Gg extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//图片
private String pic;
//内容
private String cotnent;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getCotnent() {return cotnent;}
public void setCotnent(String cotnent) {this.cotnent = cotnent;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
个人通知javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//个人通知
public class Grtz extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//标题
private String title;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}
员工工资javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//员工工资
public class Gz extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//月份
private String yf;
//按天基本工资
private Integer jbgz;
//奖金
private Integer jj;
//惩罚金额
private Integer cf;
//五险一金
private Integer wxyj;
//全勤奖
private Integer qqj;
//全部工资
private Integer qbgz;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
public Integer getJbgz() {return jbgz;}
public void setJbgz(Integer jbgz) {this.jbgz = jbgz;}
public Integer getJj() {return jj;}
public void setJj(Integer jj) {this.jj = jj;}
public Integer getCf() {return cf;}
public void setCf(Integer cf) {this.cf = cf;}
public Integer getWxyj() {return wxyj;}
public void setWxyj(Integer wxyj) {this.wxyj = wxyj;}
public Integer getQqj() {return qqj;}
public void setQqj(Integer qqj) {this.qqj = qqj;}
public Integer getQbgz() {return qbgz;}
public void setQbgz(Integer qbgz) {this.qbgz = qbgz;}
}
考勤javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考勤
public class Kq extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//考勤日期
private Date showDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
领导javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//领导
public class Ld 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 ldName;
//头像
private String headPic;
//电话
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 getLdName() {return ldName;}
public void setLdName(String ldName) {this.ldName = ldName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
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;}
}
业务审批javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//业务审批
public class Sp extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//审批标题
private String spName;
//附件
private String fileUlr;
//图片
private String pic;
//内容
private String content;
//发起日期
private Date insertDate;
//回复内容
private String back;
//审批时间
private Date backDate;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
public String getFileUlr() {return fileUlr;}
public void setFileUlr(String fileUlr) {this.fileUlr = fileUlr;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}