超市员工管理系统的设计及实现

超市员工管理系统的设计及实现登录注册界面

超市员工管理系统的设计及实现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 '姓名',
	phone varchar(100) comment '电话',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '性别',
	fendianId int comment '分店',
	isdz varchar(100) comment '是否店长'
) comment '员工';

30天表创建语句如下:


create table t_days(
	id int primary key auto_increment comment '主键',
	aa int comment '序号'
) comment '30天';

店长薪资表创建语句如下:


create table t_dzxz(
	id int primary key auto_increment comment '主键',
	fendianId int comment '分店',
	customerId int comment '员工',
	v1 int comment '分店收入',
	v2 int comment '岗位底薪',
	v3 int comment '分店评分',
	v4 int comment '其他福利',
	v5 int comment '总计',
	jd varchar(100) comment '季度',
	yf varchar(100) comment '月份'
) comment '店长薪资';

分店表创建语句如下:


create table t_fendian(
	id int primary key auto_increment comment '主键',
	fendianName varchar(100) comment '分店名称',
	address varchar(100) comment '地址'
) comment '分店';

岗位表创建语句如下:


create table t_gw(
	id int primary key auto_increment comment '主键',
	gwName varchar(100) comment '岗位名称',
	fendianId int comment '分店',
	remark varchar(100) comment '备注'
) comment '岗位';

考勤表创建语句如下:


create table t_kq(
	id int primary key auto_increment comment '主键',
	fendianId int comment '分店',
	customerId int comment '员工',
	lx varchar(100) comment '类型',
	showDate datetime comment '日期',
	remark varchar(100) comment '备注'
) comment '考勤';

评分表创建语句如下:


create table t_pinfen(
	id int primary key auto_increment comment '主键',
	fendianId int comment '分店',
	customerId int comment '员工',
	v1 int comment '工作能力评分',
	v2 int comment '工作态度评分',
	v3 int comment '工作绩效评分',
	v4 int comment '总分',
	jd varchar(100) comment '季度',
	yf varchar(100) comment '月份'
) comment '评分';

项目经理表创建语句如下:


create table t_xmjl(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	xmjlName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '性别',
	fendianId int comment '分店'
) comment '项目经理';

员工薪资表创建语句如下:


create table t_ygxz(
	id int primary key auto_increment comment '主键',
	fendianId int comment '分店',
	customerId int comment '员工',
	v1 int comment '岗位底薪',
	v2 int comment '岗位福利',
	v3 int comment '津贴',
	v4 int comment '生活补贴',
	v5 int comment '总计',
	jd varchar(100) comment '季度',
	yf 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),
	phone varchar(100),
	age varchar(100),
	sex varchar(100),
	fendianId int,
	isdz 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.phone is '电话';
comment on column t_customer.age is '年龄';
comment on column t_customer.sex is '性别';
comment on column t_customer.fendianId is '分店';
comment on column t_customer.isdz is '是否店长';
--员工表加注释
comment on table t_customer is '员工';

30天表创建语句如下:


create table t_days(
	id integer,
	aa int
);
--30天字段加注释
comment on column t_days.id is '主键';
comment on column t_days.aa is '序号';
--30天表加注释
comment on table t_days is '30天';

店长薪资表创建语句如下:


create table t_dzxz(
	id integer,
	fendianId int,
	customerId int,
	v1 int,
	v2 int,
	v3 int,
	v4 int,
	v5 int,
	jd varchar(100),
	yf varchar(100)
);
--店长薪资字段加注释
comment on column t_dzxz.id is '主键';
comment on column t_dzxz.fendianId is '分店';
comment on column t_dzxz.customerId is '员工';
comment on column t_dzxz.v1 is '分店收入';
comment on column t_dzxz.v2 is '岗位底薪';
comment on column t_dzxz.v3 is '分店评分';
comment on column t_dzxz.v4 is '其他福利';
comment on column t_dzxz.v5 is '总计';
comment on column t_dzxz.jd is '季度';
comment on column t_dzxz.yf is '月份';
--店长薪资表加注释
comment on table t_dzxz is '店长薪资';

分店表创建语句如下:


create table t_fendian(
	id integer,
	fendianName varchar(100),
	address varchar(100)
);
--分店字段加注释
comment on column t_fendian.id is '主键';
comment on column t_fendian.fendianName is '分店名称';
comment on column t_fendian.address is '地址';
--分店表加注释
comment on table t_fendian is '分店';

岗位表创建语句如下:


create table t_gw(
	id integer,
	gwName varchar(100),
	fendianId int,
	remark varchar(100)
);
--岗位字段加注释
comment on column t_gw.id is '主键';
comment on column t_gw.gwName is '岗位名称';
comment on column t_gw.fendianId is '分店';
comment on column t_gw.remark is '备注';
--岗位表加注释
comment on table t_gw is '岗位';

考勤表创建语句如下:


create table t_kq(
	id integer,
	fendianId int,
	customerId int,
	lx varchar(100),
	showDate datetime,
	remark varchar(100)
);
--考勤字段加注释
comment on column t_kq.id is '主键';
comment on column t_kq.fendianId is '分店';
comment on column t_kq.customerId is '员工';
comment on column t_kq.lx is '类型';
comment on column t_kq.showDate is '日期';
comment on column t_kq.remark is '备注';
--考勤表加注释
comment on table t_kq is '考勤';

评分表创建语句如下:


create table t_pinfen(
	id integer,
	fendianId int,
	customerId int,
	v1 int,
	v2 int,
	v3 int,
	v4 int,
	jd varchar(100),
	yf varchar(100)
);
--评分字段加注释
comment on column t_pinfen.id is '主键';
comment on column t_pinfen.fendianId is '分店';
comment on column t_pinfen.customerId is '员工';
comment on column t_pinfen.v1 is '工作能力评分';
comment on column t_pinfen.v2 is '工作态度评分';
comment on column t_pinfen.v3 is '工作绩效评分';
comment on column t_pinfen.v4 is '总分';
comment on column t_pinfen.jd is '季度';
comment on column t_pinfen.yf is '月份';
--评分表加注释
comment on table t_pinfen is '评分';

项目经理表创建语句如下:


create table t_xmjl(
	id integer,
	username varchar(100),
	password varchar(100),
	xmjlName varchar(100),
	phone varchar(100),
	age varchar(100),
	sex varchar(100),
	fendianId int
);
--项目经理字段加注释
comment on column t_xmjl.id is '主键';
comment on column t_xmjl.username is '账号';
comment on column t_xmjl.password is '密码';
comment on column t_xmjl.xmjlName is '姓名';
comment on column t_xmjl.phone is '电话';
comment on column t_xmjl.age is '年龄';
comment on column t_xmjl.sex is '性别';
comment on column t_xmjl.fendianId is '分店';
--项目经理表加注释
comment on table t_xmjl is '项目经理';

员工薪资表创建语句如下:


create table t_ygxz(
	id integer,
	fendianId int,
	customerId int,
	v1 int,
	v2 int,
	v3 int,
	v4 int,
	v5 int,
	jd varchar(100),
	yf varchar(100)
);
--员工薪资字段加注释
comment on column t_ygxz.id is '主键';
comment on column t_ygxz.fendianId is '分店';
comment on column t_ygxz.customerId is '员工';
comment on column t_ygxz.v1 is '岗位底薪';
comment on column t_ygxz.v2 is '岗位福利';
comment on column t_ygxz.v3 is '津贴';
comment on column t_ygxz.v4 is '生活补贴';
comment on column t_ygxz.v5 is '总计';
comment on column t_ygxz.jd is '季度';
comment on column t_ygxz.yf is '月份';
--员工薪资表加注释
comment on table t_ygxz is '员工薪资';

oracle特有,对应序列如下:


create sequence s_t_customer;
create sequence s_t_days;
create sequence s_t_dzxz;
create sequence s_t_fendian;
create sequence s_t_gw;
create sequence s_t_kq;
create sequence s_t_pinfen;
create sequence s_t_xmjl;
create sequence s_t_ygxz;

超市员工管理系统的设计及实现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),--姓名
	phone varchar(100),--电话
	age varchar(100),--年龄
	sex varchar(100),--性别
	fendianId int,--分店
	isdz varchar(100)--是否店长
);

30天表创建语句如下:


--30天表注释
create table t_days(
	id int identity(1,1) primary key not null,--主键
	aa int--序号
);

店长薪资表创建语句如下:


--店长薪资表注释
create table t_dzxz(
	id int identity(1,1) primary key not null,--主键
	fendianId int,--分店
	customerId int,--员工
	v1 int,--分店收入
	v2 int,--岗位底薪
	v3 int,--分店评分
	v4 int,--其他福利
	v5 int,--总计
	jd varchar(100),--季度
	yf varchar(100)--月份
);

分店表创建语句如下:


--分店表注释
create table t_fendian(
	id int identity(1,1) primary key not null,--主键
	fendianName varchar(100),--分店名称
	address varchar(100)--地址
);

岗位表创建语句如下:


--岗位表注释
create table t_gw(
	id int identity(1,1) primary key not null,--主键
	gwName varchar(100),--岗位名称
	fendianId int,--分店
	remark varchar(100)--备注
);

考勤表创建语句如下:


--考勤表注释
create table t_kq(
	id int identity(1,1) primary key not null,--主键
	fendianId int,--分店
	customerId int,--员工
	lx varchar(100),--类型
	showDate datetime,--日期
	remark varchar(100)--备注
);

评分表创建语句如下:


--评分表注释
create table t_pinfen(
	id int identity(1,1) primary key not null,--主键
	fendianId int,--分店
	customerId int,--员工
	v1 int,--工作能力评分
	v2 int,--工作态度评分
	v3 int,--工作绩效评分
	v4 int,--总分
	jd varchar(100),--季度
	yf varchar(100)--月份
);

项目经理表创建语句如下:


--项目经理表注释
create table t_xmjl(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	xmjlName varchar(100),--姓名
	phone varchar(100),--电话
	age varchar(100),--年龄
	sex varchar(100),--性别
	fendianId int--分店
);

员工薪资表创建语句如下:


--员工薪资表注释
create table t_ygxz(
	id int identity(1,1) primary key not null,--主键
	fendianId int,--分店
	customerId int,--员工
	v1 int,--岗位底薪
	v2 int,--岗位福利
	v3 int,--津贴
	v4 int,--生活补贴
	v5 int,--总计
	jd varchar(100),--季度
	yf varchar(100)--月份
);

超市员工管理系统的设计及实现登录后主页

超市员工管理系统的设计及实现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 phone;
//年龄
private String age;
//性别
private String sex;
//分店
private Integer fendianId;
//是否店长
private String isdz;
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 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 Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public String getIsdz() {return isdz;}
public void setIsdz(String isdz) {this.isdz = isdz;}
}

30天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

//30天
@Table(name = "t_days")
public class Days {
//主键
@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 aa;
public Integer getAa() {return aa;}
public void setAa(Integer aa) {this.aa = aa;}
}

店长薪资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_dzxz")
public class Dzxz {
//主键
@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 fendianId;
//员工
private Integer customerId;
//分店收入
private Integer v1;
//岗位底薪
private Integer v2;
//分店评分
private Integer v3;
//其他福利
private Integer v4;
//总计
private Integer v5;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public Integer getV5() {return v5;}
public void setV5(Integer v5) {this.v5 = v5;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

分店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_fendian")
public class Fendian {
//主键
@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 fendianName;
//地址
private String address;
public String getFendianName() {return fendianName;}
public void setFendianName(String fendianName) {this.fendianName = fendianName;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

岗位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_gw")
public class Gw {
//主键
@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 gwName;
//分店
private Integer fendianId;
//备注
private String remark;
public String getGwName() {return gwName;}
public void setGwName(String gwName) {this.gwName = gwName;}
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

考勤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 fendianId;
//员工
private Integer customerId;
//类型
private String lx;
//日期
private Date showDate;
//备注
private String remark;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

评分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_pinfen")
public class Pinfen {
//主键
@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 fendianId;
//员工
private Integer customerId;
//工作能力评分
private Integer v1;
//工作态度评分
private Integer v2;
//工作绩效评分
private Integer v3;
//总分
private Integer v4;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

项目经理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_xmjl")
public class Xmjl {
//主键
@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 xmjlName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//分店
private Integer fendianId;
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 getXmjlName() {return xmjlName;}
public void setXmjlName(String xmjlName) {this.xmjlName = xmjlName;}
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 Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
}

员工薪资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_ygxz")
public class Ygxz {
//主键
@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 fendianId;
//员工
private Integer customerId;
//岗位底薪
private Integer v1;
//岗位福利
private Integer v2;
//津贴
private Integer v3;
//生活补贴
private Integer v4;
//总计
private Integer v5;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public Integer getV5() {return v5;}
public void setV5(Integer v5) {this.v5 = v5;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

超市员工管理系统的设计及实现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 phone;
//年龄
private String age;
//性别
private String sex;
//分店
private Integer fendianId;
//是否店长
private String isdz;
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 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 Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public String getIsdz() {return isdz;}
public void setIsdz(String isdz) {this.isdz = isdz;}
}

30天javaBean创建语句如下:


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

//30天
public class Days  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//序号
private Integer aa;
public Integer getAa() {return aa;}
public void setAa(Integer aa) {this.aa = aa;}
}

店长薪资javaBean创建语句如下:


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

//店长薪资
public class Dzxz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店
private Integer fendianId;
//员工
private Integer customerId;
//分店收入
private Integer v1;
//岗位底薪
private Integer v2;
//分店评分
private Integer v3;
//其他福利
private Integer v4;
//总计
private Integer v5;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public Integer getV5() {return v5;}
public void setV5(Integer v5) {this.v5 = v5;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

分店javaBean创建语句如下:


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

//分店
public class Fendian  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店名称
private String fendianName;
//地址
private String address;
public String getFendianName() {return fendianName;}
public void setFendianName(String fendianName) {this.fendianName = fendianName;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

岗位javaBean创建语句如下:


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

//岗位
public class Gw  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//岗位名称
private String gwName;
//分店
private Integer fendianId;
//备注
private String remark;
public String getGwName() {return gwName;}
public void setGwName(String gwName) {this.gwName = gwName;}
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

考勤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 fendianId;
//员工
private Integer customerId;
//类型
private String lx;
//日期
private Date showDate;
//备注
private String remark;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

评分javaBean创建语句如下:


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

//评分
public class Pinfen  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店
private Integer fendianId;
//员工
private Integer customerId;
//工作能力评分
private Integer v1;
//工作态度评分
private Integer v2;
//工作绩效评分
private Integer v3;
//总分
private Integer v4;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

项目经理javaBean创建语句如下:


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

//项目经理
public class Xmjl  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 xmjlName;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//分店
private Integer fendianId;
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 getXmjlName() {return xmjlName;}
public void setXmjlName(String xmjlName) {this.xmjlName = xmjlName;}
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 Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
}

员工薪资javaBean创建语句如下:


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

//员工薪资
public class Ygxz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店
private Integer fendianId;
//员工
private Integer customerId;
//岗位底薪
private Integer v1;
//岗位福利
private Integer v2;
//津贴
private Integer v3;
//生活补贴
private Integer v4;
//总计
private Integer v5;
//季度
private String jd;
//月份
private String yf;
public Integer getFendianId() {return fendianId;}
public void setFendianId(Integer fendianId) {this.fendianId = fendianId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getV1() {return v1;}
public void setV1(Integer v1) {this.v1 = v1;}
public Integer getV2() {return v2;}
public void setV2(Integer v2) {this.v2 = v2;}
public Integer getV3() {return v3;}
public void setV3(Integer v3) {this.v3 = v3;}
public Integer getV4() {return v4;}
public void setV4(Integer v4) {this.v4 = v4;}
public Integer getV5() {return v5;}
public void setV5(Integer v5) {this.v5 = v5;}
public String getJd() {return jd;}
public void setJd(String jd) {this.jd = jd;}
public String getYf() {return yf;}
public void setYf(String yf) {this.yf = yf;}
}

相关毕业设计源码

基于推荐系统的校园美食交流系统的设计与开发

基于推荐系统的校园美食交流系统的设计与开发,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

电力管理系统

电力管理系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

企业事务管理系统的设计与实现

企业事务管理系统的设计与实现,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于java的现代物流信息管理系统开发,javaweb毕业设计

基于java的现代物流信息管理系统开发(xiandaiwuliu),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于ssm图书管理网站的设计与开发

基于ssm图书管理网站的设计与开发,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于JavaWeb的淘米电商平台的设计与实现

基于JavaWeb的淘米电商平台的设计与实现,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

饮品在线点单与管理系统

饮品在线点单与管理系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

员工考勤系统(employee_work_system),java网站毕业设计

员工考勤系统(employee_work_system),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于WEB的教职工健康档案管理系统,java设计与开发

基于WEB的教职工健康档案管理系统(jiaozhigong),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于jsp的高校公选课系统,javaweb课程设计

基于jsp的高校公选课系统(gaoxiaogongxuanke),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于JSP的淘二手网站的规划与设计

基于JSP的淘二手网站的规划与设计(taoershou),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于android的“家教学”三维一体的教学管理模型的研究,优秀java设计

基于android的“家教学”三维一体的教学管理模型的研究(jiajiaoxue),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

评论