连锁超市进销存管理系统

连锁超市进销存管理系统登录注册界面

连锁超市进销存管理系统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_fd(
	id int primary key auto_increment comment '主键',
	fdName varchar(100) comment '分店名称',
	fdbh varchar(100) comment '分店编号',
	xm varchar(100) comment '负责人姓名',
	phone varchar(100) comment '电话',
	address varchar(100) comment '地址',
	zj int comment '资金'
) comment '分店';

分店管理员表创建语句如下:


create table t_fdadmin(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	fdadminName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	address varchar(100) comment '地址',
	fdId int comment '分店',
	js varchar(100) comment ''
) comment '分店管理员';

入库退库表创建语句如下:


create table t_rktk(
	id int primary key auto_increment comment '主键',
	types varchar(100) comment '入库退库',
	fdId int comment '分店',
	fee int comment '单价',
	spId int comment '商品',
	sl int comment '退货数量',
	zje int comment '总金额',
	showDate datetime comment '日期'
) comment '入库退库';

商品表创建语句如下:


create table t_sp(
	id int primary key auto_increment comment '主键',
	spName varchar(100) comment '商品名称',
	fee varchar(100) comment '价格',
	sl varchar(100) comment '库存数量',
	fdId int comment '分店'
) comment '商品';

商品退货表创建语句如下:


create table t_th(
	id int primary key auto_increment comment '主键',
	fdId int comment '分店',
	fee int comment '单价',
	spId int comment '商品',
	sl int comment '退货数量',
	zje int comment '总金额',
	showDate datetime comment '退货日期'
) comment '商品退货';

商品销售表创建语句如下:


create table t_xs(
	id int primary key auto_increment comment '主键',
	fdId int comment '分店',
	fee int comment '单价',
	spId int comment '商品',
	sl int comment '销售数量',
	zje int comment '总金额',
	showDate datetime comment '销售日期'
) comment '商品销售';

员工表创建语句如下:


create table t_yg(
	id int primary key auto_increment comment '主键',
	ygName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	address varchar(100) comment '年龄',
	fdId int 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_fd(
	id integer,
	fdName varchar(100),
	fdbh varchar(100),
	xm varchar(100),
	phone varchar(100),
	address varchar(100),
	zj int
);
--分店字段加注释
comment on column t_fd.id is '主键';
comment on column t_fd.fdName is '分店名称';
comment on column t_fd.fdbh is '分店编号';
comment on column t_fd.xm is '负责人姓名';
comment on column t_fd.phone is '电话';
comment on column t_fd.address is '地址';
comment on column t_fd.zj is '资金';
--分店表加注释
comment on table t_fd is '分店';

分店管理员表创建语句如下:


create table t_fdadmin(
	id integer,
	username varchar(100),
	password varchar(100),
	fdadminName varchar(100),
	phone varchar(100),
	address varchar(100),
	fdId int,
	js varchar(100)
);
--分店管理员字段加注释
comment on column t_fdadmin.id is '主键';
comment on column t_fdadmin.username is '账号';
comment on column t_fdadmin.password is '密码';
comment on column t_fdadmin.fdadminName is '姓名';
comment on column t_fdadmin.phone is '电话';
comment on column t_fdadmin.address is '地址';
comment on column t_fdadmin.fdId is '分店';
comment on column t_fdadmin.js is '';
--分店管理员表加注释
comment on table t_fdadmin is '分店管理员';

入库退库表创建语句如下:


create table t_rktk(
	id integer,
	types varchar(100),
	fdId int,
	fee int,
	spId int,
	sl int,
	zje int,
	showDate datetime
);
--入库退库字段加注释
comment on column t_rktk.id is '主键';
comment on column t_rktk.types is '入库退库';
comment on column t_rktk.fdId is '分店';
comment on column t_rktk.fee is '单价';
comment on column t_rktk.spId is '商品';
comment on column t_rktk.sl is '退货数量';
comment on column t_rktk.zje is '总金额';
comment on column t_rktk.showDate is '日期';
--入库退库表加注释
comment on table t_rktk is '入库退库';

商品表创建语句如下:


create table t_sp(
	id integer,
	spName varchar(100),
	fee varchar(100),
	sl varchar(100),
	fdId int
);
--商品字段加注释
comment on column t_sp.id is '主键';
comment on column t_sp.spName is '商品名称';
comment on column t_sp.fee is '价格';
comment on column t_sp.sl is '库存数量';
comment on column t_sp.fdId is '分店';
--商品表加注释
comment on table t_sp is '商品';

商品退货表创建语句如下:


create table t_th(
	id integer,
	fdId int,
	fee int,
	spId int,
	sl int,
	zje int,
	showDate datetime
);
--商品退货字段加注释
comment on column t_th.id is '主键';
comment on column t_th.fdId is '分店';
comment on column t_th.fee is '单价';
comment on column t_th.spId is '商品';
comment on column t_th.sl is '退货数量';
comment on column t_th.zje is '总金额';
comment on column t_th.showDate is '退货日期';
--商品退货表加注释
comment on table t_th is '商品退货';

商品销售表创建语句如下:


create table t_xs(
	id integer,
	fdId int,
	fee int,
	spId int,
	sl int,
	zje int,
	showDate datetime
);
--商品销售字段加注释
comment on column t_xs.id is '主键';
comment on column t_xs.fdId is '分店';
comment on column t_xs.fee is '单价';
comment on column t_xs.spId is '商品';
comment on column t_xs.sl is '销售数量';
comment on column t_xs.zje is '总金额';
comment on column t_xs.showDate is '销售日期';
--商品销售表加注释
comment on table t_xs is '商品销售';

员工表创建语句如下:


create table t_yg(
	id integer,
	ygName varchar(100),
	phone varchar(100),
	address varchar(100),
	fdId int
);
--员工字段加注释
comment on column t_yg.id is '主键';
comment on column t_yg.ygName is '姓名';
comment on column t_yg.phone is '电话';
comment on column t_yg.address is '年龄';
comment on column t_yg.fdId is '分店';
--员工表加注释
comment on table t_yg is '员工';

oracle特有,对应序列如下:


create sequence s_t_fd;
create sequence s_t_fdadmin;
create sequence s_t_rktk;
create sequence s_t_sp;
create sequence s_t_th;
create sequence s_t_xs;
create sequence s_t_yg;

连锁超市进销存管理系统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_fd(
	id int identity(1,1) primary key not null,--主键
	fdName varchar(100),--分店名称
	fdbh varchar(100),--分店编号
	xm varchar(100),--负责人姓名
	phone varchar(100),--电话
	address varchar(100),--地址
	zj int--资金
);

分店管理员表创建语句如下:


--分店管理员表注释
create table t_fdadmin(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	fdadminName varchar(100),--姓名
	phone varchar(100),--电话
	address varchar(100),--地址
	fdId int,--分店
	js varchar(100)--
);

入库退库表创建语句如下:


--入库退库表注释
create table t_rktk(
	id int identity(1,1) primary key not null,--主键
	types varchar(100),--入库退库
	fdId int,--分店
	fee int,--单价
	spId int,--商品
	sl int,--退货数量
	zje int,--总金额
	showDate datetime--日期
);

商品表创建语句如下:


--商品表注释
create table t_sp(
	id int identity(1,1) primary key not null,--主键
	spName varchar(100),--商品名称
	fee varchar(100),--价格
	sl varchar(100),--库存数量
	fdId int--分店
);

商品退货表创建语句如下:


--商品退货表注释
create table t_th(
	id int identity(1,1) primary key not null,--主键
	fdId int,--分店
	fee int,--单价
	spId int,--商品
	sl int,--退货数量
	zje int,--总金额
	showDate datetime--退货日期
);

商品销售表创建语句如下:


--商品销售表注释
create table t_xs(
	id int identity(1,1) primary key not null,--主键
	fdId int,--分店
	fee int,--单价
	spId int,--商品
	sl int,--销售数量
	zje int,--总金额
	showDate datetime--销售日期
);

员工表创建语句如下:


--员工表注释
create table t_yg(
	id int identity(1,1) primary key not null,--主键
	ygName varchar(100),--姓名
	phone varchar(100),--电话
	address varchar(100),--年龄
	fdId int--分店
);

连锁超市进销存管理系统登录后主页

连锁超市进销存管理系统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_fd")
public class Fd {
//主键
@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 fdName;
//分店编号
private String fdbh;
//负责人姓名
private String xm;
//电话
private String phone;
//地址
private String address;
//资金
private Integer zj;
public String getFdName() {return fdName;}
public void setFdName(String fdName) {this.fdName = fdName;}
public String getFdbh() {return fdbh;}
public void setFdbh(String fdbh) {this.fdbh = fdbh;}
public String getXm() {return xm;}
public void setXm(String xm) {this.xm = xm;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getZj() {return zj;}
public void setZj(Integer zj) {this.zj = zj;}
}

分店管理员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_fdadmin")
public class Fdadmin {
//主键
@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 fdadminName;
//电话
private String phone;
//地址
private String address;
//分店
private Integer fdId;
//
private String js;
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 getFdadminName() {return fdadminName;}
public void setFdadminName(String fdadminName) {this.fdadminName = fdadminName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}

入库退库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_rktk")
public class Rktk {
//主键
@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 types;
//分店
private Integer fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//退货数量
private Integer sl;
//总金额
private Integer zje;
//日期
private Date showDate;
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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_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 String spName;
//价格
private String fee;
//库存数量
private String sl;
//分店
private Integer fdId;
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
public String getFee() {return fee;}
public void setFee(String fee) {this.fee = fee;}
public String getSl() {return sl;}
public void setSl(String sl) {this.sl = sl;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
}

商品退货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_th")
public class Th {
//主键
@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 fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//退货数量
private Integer sl;
//总金额
private Integer zje;
//退货日期
private Date showDate;
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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_xs")
public class Xs {
//主键
@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 fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//销售数量
private Integer sl;
//总金额
private Integer zje;
//销售日期
private Date showDate;
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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_yg")
public class Yg {
//主键
@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 ygName;
//电话
private String phone;
//年龄
private String address;
//分店
private Integer fdId;
public String getYgName() {return ygName;}
public void setYgName(String ygName) {this.ygName = ygName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
}

连锁超市进销存管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:

分店javaBean创建语句如下:


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

//分店
public class Fd  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店名称
private String fdName;
//分店编号
private String fdbh;
//负责人姓名
private String xm;
//电话
private String phone;
//地址
private String address;
//资金
private Integer zj;
public String getFdName() {return fdName;}
public void setFdName(String fdName) {this.fdName = fdName;}
public String getFdbh() {return fdbh;}
public void setFdbh(String fdbh) {this.fdbh = fdbh;}
public String getXm() {return xm;}
public void setXm(String xm) {this.xm = xm;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getZj() {return zj;}
public void setZj(Integer zj) {this.zj = zj;}
}

分店管理员javaBean创建语句如下:


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

//分店管理员
public class Fdadmin  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 fdadminName;
//电话
private String phone;
//地址
private String address;
//分店
private Integer fdId;
//
private String js;
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 getFdadminName() {return fdadminName;}
public void setFdadminName(String fdadminName) {this.fdadminName = fdadminName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}

入库退库javaBean创建语句如下:


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

//入库退库
public class Rktk  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//入库退库
private String types;
//分店
private Integer fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//退货数量
private Integer sl;
//总金额
private Integer zje;
//日期
private Date showDate;
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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 Sp  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//商品名称
private String spName;
//价格
private String fee;
//库存数量
private String sl;
//分店
private Integer fdId;
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
public String getFee() {return fee;}
public void setFee(String fee) {this.fee = fee;}
public String getSl() {return sl;}
public void setSl(String sl) {this.sl = sl;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
}

商品退货javaBean创建语句如下:


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

//商品退货
public class Th  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店
private Integer fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//退货数量
private Integer sl;
//总金额
private Integer zje;
//退货日期
private Date showDate;
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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 Xs  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分店
private Integer fdId;
//单价
private Integer fee;
//商品
private Integer spId;
//销售数量
private Integer sl;
//总金额
private Integer zje;
//销售日期
private Date showDate;
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getSpId() {return spId;}
public void setSpId(Integer spId) {this.spId = spId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
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 Yg  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//姓名
private String ygName;
//电话
private String phone;
//年龄
private String address;
//分店
private Integer fdId;
public String getYgName() {return ygName;}
public void setYgName(String ygName) {this.ygName = ygName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Integer getFdId() {return fdId;}
public void setFdId(Integer fdId) {this.fdId = fdId;}
}

相关毕业设计源码

金融资产管理系统(xfa87)_mysql_oracle代码分享

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

驾校学员信息管理系统(xga44)_mysql_oracle代码分享

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

基于java的ssm框架道口国宾大酒店住宿信息管理系统

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

考研学习平台的设计与实现(kaoyanpingtai),java管理系统毕业设计

考研学习平台的设计与实现(kaoyanpingtai),提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

武安社区居家养老管理系统的开发与实现

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

电子资源账务管理系统(electronic_resources),毕业设计java

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

智能出差报销管理系统

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

基于JAVA的酒店信息管理系统

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

小型停车场管理系统(xfa47)_mysql_oracle代码分享

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

高校院系教务管理系统的设计与实现

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

评论