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

超市员工管理系统的设计及实现mysql数据库创建语句
超市员工管理系统的设计及实现oracle数据库创建语句
超市员工管理系统的设计及实现sqlserver数据库创建语句
超市员工管理系统的设计及实现spring+springMVC+hibernate框架对象(javaBean,pojo)设计
超市员工管理系统的设计及实现spring+springMVC+mybatis框架对象(javaBean,pojo)设计
高质量编程视频:shangyepingtai.xin

超市员工管理系统的设计及实现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 ‘主键’,
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 ‘员工’;
SQLCopy
30天表创建语句如下:
create table t_days(
id int primary key auto_increment comment ‘主键’,
aa int comment ‘序号’
) comment ‘30天’;
SQLCopy
店长薪资表创建语句如下:
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 ‘店长薪资’;
SQLCopy
分店表创建语句如下:
create table t_fendian(
id int primary key auto_increment comment ‘主键’,
fendianName varchar(100) comment ‘分店名称’,
address varchar(100) comment ‘地址’
) comment ‘分店’;
SQLCopy
岗位表创建语句如下:
create table t_gw(
id int primary key auto_increment comment ‘主键’,
gwName varchar(100) comment ‘岗位名称’,
fendianId int comment ‘分店’,
remark varchar(100) comment ‘备注’
) comment ‘岗位’;
SQLCopy
考勤表创建语句如下:
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 ‘考勤’;
SQLCopy
评分表创建语句如下:
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 ‘评分’;
SQLCopy
项目经理表创建语句如下:
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 ‘项目经理’;
SQLCopy
员工薪资表创建语句如下:
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 ‘员工薪资’;
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,
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 ‘员工’;
SQLCopy
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天’;
SQLCopy
店长薪资表创建语句如下:
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 ‘店长薪资’;
SQLCopy
分店表创建语句如下:
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 ‘分店’;
SQLCopy
岗位表创建语句如下:
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 ‘岗位’;
SQLCopy
考勤表创建语句如下:
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 ‘考勤’;
SQLCopy
评分表创建语句如下:
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 ‘评分’;
SQLCopy
项目经理表创建语句如下:
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 ‘项目经理’;
SQLCopy
员工薪资表创建语句如下:
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 ‘员工薪资’;
SQLCopy
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;
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,–主键
username varchar(100),–账号
password varchar(100),–密码
customerName varchar(100),–姓名
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100),–性别
fendianId int,–分店
isdz varchar(100)–是否店长
);
SQLCopy
30天表创建语句如下:
–30天表注释
create table t_days(
id int identity(1,1) primary key not null,–主键
aa int–序号
);
SQLCopy
店长薪资表创建语句如下:
–店长薪资表注释
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)–月份
);
SQLCopy
分店表创建语句如下:
–分店表注释
create table t_fendian(
id int identity(1,1) primary key not null,–主键
fendianName varchar(100),–分店名称
address varchar(100)–地址
);
SQLCopy
岗位表创建语句如下:
–岗位表注释
create table t_gw(
id int identity(1,1) primary key not null,–主键
gwName varchar(100),–岗位名称
fendianId int,–分店
remark varchar(100)–备注
);
SQLCopy
考勤表创建语句如下:
–考勤表注释
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)–备注
);
SQLCopy
评分表创建语句如下:
–评分表注释
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)–月份
);
SQLCopy
项目经理表创建语句如下:
–项目经理表注释
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–分店
);
SQLCopy
员工薪资表创建语句如下:
–员工薪资表注释
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)–月份
);
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 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;}
}
JavaCopy
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;}
}
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_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;}
}
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_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;}
}
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_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;}
}
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_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;}
}
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_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;}
}
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_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;}
}
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_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;}
}
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 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;}
}
JavaCopy
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;}
}
JavaCopy
店长薪资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;}
}
JavaCopy
分店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;}
}
JavaCopy
岗位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;}
}
JavaCopy
考勤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;}
}
JavaCopy
评分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;}
}
JavaCopy
项目经理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;}
}
JavaCopy
员工薪资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;}
}
JavaCopy

Java毕业设计_超市员工管理系统的设计及实现相关推荐

  1. 基于Java毕业设计智创员工管理系统源码+系统+mysql+lw文档+部署软件

    基于Java毕业设计智创员工管理系统源码+系统+mysql+lw文档+部署软件 基于Java毕业设计智创员工管理系统源码+系统+mysql+lw文档+部署软件 本源码技术栈: 项目架构:B/S架构 开 ...

  2. java毕业设计猎头公司业务管理系统的设计与实现源码+lw文档+mybatis+系统+mysql数据库+调试

    java毕业设计猎头公司业务管理系统的设计与实现源码+lw文档+mybatis+系统+mysql数据库+调试 java毕业设计猎头公司业务管理系统的设计与实现源码+lw文档+mybatis+系统+my ...

  3. JAVA毕业设计HTML5企业员工管理系统计算机源码+lw文档+系统+调试部署+数据库

    JAVA毕业设计HTML5企业员工管理系统计算机源码+lw文档+系统+调试部署+数据库 JAVA毕业设计HTML5企业员工管理系统计算机源码+lw文档+系统+调试部署+数据库 本源码技术栈: 项目架构 ...

  4. 基于Java毕业设计高校共享机房管理系统的设计与实现源码+系统+mysql+lw文档+部署软件

    基于Java毕业设计高校共享机房管理系统的设计与实现源码+系统+mysql+lw文档+部署软件 基于Java毕业设计高校共享机房管理系统的设计与实现源码+系统+mysql+lw文档+部署软件 本源码技 ...

  5. [附源码]JAVA毕业设计汽车售后服务信息管理系统的设计与实现(系统+LW)

    [附源码]JAVA毕业设计汽车售后服务信息管理系统的设计与实现(系统+LW) 项目运行 环境项配置: Jdk1.8 + Tomcat8.5 + Mysql + HBuilderX(Webstorm也行 ...

  6. [附源码]java毕业设计生产型企业员工管理系统

    项目运行 环境配置: Jdk1.8 + Tomcat7.0 + Mysql + HBuilderX(Webstorm也行)+ Eclispe(IntelliJ IDEA,Eclispe,MyEclis ...

  7. Java毕业设计_图书馆信息管理系统

    图书馆信息管理系统_部分源代码分享 图书馆信息管理系统mysql数据库创建语句 图书馆信息管理系统oracle数据库创建语句 图书馆信息管理系统sqlserver数据库创建语句 图书馆信息管理系统sp ...

  8. 鉴赏java毕业设计_医疗分诊管理系统

    医疗分诊管理系统mysql数据库创建语句 医疗分诊管理系统oracle数据库创建语句 医疗分诊管理系统sqlserver数据库创建语句 医疗分诊管理系统spring+springMVC+hiberna ...

  9. java毕设_医院病房管理系统的设计与实现

    医院病房管理系统的设计与实现 医院病房管理系统的设计与实现mysql数据库创建语句 医院病房管理系统的设计与实现oracle数据库创建语句 医院病房管理系统的设计与实现sqlserver数据库创建语句 ...

最新文章

  1. mongodb之备份
  2. Python的零基础超详细讲解(第十三天)-Python的类与对象
  3. MySQL SQL的概述
  4. mysql-5.5.31主从复制
  5. spark官方文档_这些未在 Spark SQL 文档中说明的优化措施,你知道吗?
  6. 数据库如何进行索引优化
  7. 开关造成的毛刺_玻璃面板开关钻孔加工
  8. Django框架 day04
  9. linux 套接口文件_继上一篇,继续介绍linux 套接口
  10. APP开发流程,移动应用开发流程
  11. 三菱plc与西门子plc编程有什么不同?
  12. 关于集合set()补充
  13. jmeter 中 Client implementation HttpClient4和java区别实践一
  14. Choerodon猪齿鱼实践之角色管理
  15. 软件系统设计-1-软件设计原则
  16. Ubuntu 16.04 笔记本双显卡安装 CUDA9.0
  17. php strpos注意问题坑,php小白容易出现的 strpos 逻辑错误
  18. 同城信息小程序服务器,同城小程序正式上线,这大概是目前信息量最大的小程序了...
  19. 大数据、互联网、机器人成大热门
  20. PMP学习笔记 第13章 项目相关方管理

热门文章

  1. python运动会报名_【python ** 运算符】**小学第四届田径运动会开幕词
  2. 使用SVM分类器做颜色分类走过的坑
  3. FastVNC(远程协助工具) v1.0
  4. HTML5+CSS大作业——个人网页设计(7页)
  5. 100.s1-来电归属地的显示
  6. mvn 命令打包项目
  7. 最小错误率贝叶斯决策的基本思想_最小错误率贝叶斯决策
  8. 【Matlab语音处理】声音信号频谱分析仪【含GUI源码 325期】
  9. python ssh远程连接服务器并执行命令或相关操作
  10. Linux下的IPv6地址、路由以及隧道配置