企业员工财务系统(xda5)_mysql_oracle代码分享

企业员工财务系统登录注册界面

企业员工财务系统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 '',
	gh varchar(100) comment '工号'
) comment '员工';

财务表创建语句如下:


create table t_cw(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	cwName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '',
	gh varchar(100) comment '工号'
) comment '财务';

出账表创建语句如下:


create table t_cz(
	id int primary key auto_increment comment '主键',
	bh varchar(100) comment '流水编号',
	title varchar(100) comment '标题',
	content text comment '内容',
	showDate datetime comment '出账日期',
	fee int comment '金额',
	company varchar(100) comment '对方公司'
) comment '出账';

固定资产表创建语句如下:


create table t_gdzc(
	id int primary key auto_increment comment '主键',
	bh varchar(100) comment '流水编号',
	title varchar(100) comment '资产名称',
	content text comment '内容',
	showDate datetime comment '购买日期',
	fee int comment '金额'
) comment '固定资产';

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


create table t_gz(
	id int primary key auto_increment comment '主键',
	customerId int comment '员工',
	showDate datetime comment '发工资日期',
	fee1 int comment '基础工资',
	fee2 int comment '绩效',
	fee3 int comment '奖金',
	fee4 int comment '总工资'
) comment '员工工资';

进账表创建语句如下:


create table t_jz(
	id int primary key auto_increment comment '主键',
	bh varchar(100) comment '流水编号',
	title varchar(100) comment '标题',
	content text comment '内容',
	showDate datetime comment '进账日期',
	fee int comment '金额',
	company 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),
	gh 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.gh is '工号';
--员工表加注释
comment on table t_customer is '员工';

财务表创建语句如下:


create table t_cw(
	id integer,
	username varchar(100),
	password varchar(100),
	cwName varchar(100),
	phone varchar(100),
	age varchar(100),
	sex varchar(100),
	gh varchar(100)
);
--财务字段加注释
comment on column t_cw.id is '主键';
comment on column t_cw.username is '账号';
comment on column t_cw.password is '密码';
comment on column t_cw.cwName is '姓名';
comment on column t_cw.phone is '电话';
comment on column t_cw.age is '年龄';
comment on column t_cw.sex is '';
comment on column t_cw.gh is '工号';
--财务表加注释
comment on table t_cw is '财务';

出账表创建语句如下:


create table t_cz(
	id integer,
	bh varchar(100),
	title varchar(100),
	content text,
	showDate datetime,
	fee int,
	company varchar(100)
);
--出账字段加注释
comment on column t_cz.id is '主键';
comment on column t_cz.bh is '流水编号';
comment on column t_cz.title is '标题';
comment on column t_cz.content is '内容';
comment on column t_cz.showDate is '出账日期';
comment on column t_cz.fee is '金额';
comment on column t_cz.company is '对方公司';
--出账表加注释
comment on table t_cz is '出账';

固定资产表创建语句如下:


create table t_gdzc(
	id integer,
	bh varchar(100),
	title varchar(100),
	content text,
	showDate datetime,
	fee int
);
--固定资产字段加注释
comment on column t_gdzc.id is '主键';
comment on column t_gdzc.bh is '流水编号';
comment on column t_gdzc.title is '资产名称';
comment on column t_gdzc.content is '内容';
comment on column t_gdzc.showDate is '购买日期';
comment on column t_gdzc.fee is '金额';
--固定资产表加注释
comment on table t_gdzc is '固定资产';

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


create table t_gz(
	id integer,
	customerId int,
	showDate datetime,
	fee1 int,
	fee2 int,
	fee3 int,
	fee4 int
);
--员工工资字段加注释
comment on column t_gz.id is '主键';
comment on column t_gz.customerId is '员工';
comment on column t_gz.showDate is '发工资日期';
comment on column t_gz.fee1 is '基础工资';
comment on column t_gz.fee2 is '绩效';
comment on column t_gz.fee3 is '奖金';
comment on column t_gz.fee4 is '总工资';
--员工工资表加注释
comment on table t_gz is '员工工资';

进账表创建语句如下:


create table t_jz(
	id integer,
	bh varchar(100),
	title varchar(100),
	content text,
	showDate datetime,
	fee int,
	company varchar(100)
);
--进账字段加注释
comment on column t_jz.id is '主键';
comment on column t_jz.bh is '流水编号';
comment on column t_jz.title is '标题';
comment on column t_jz.content is '内容';
comment on column t_jz.showDate is '进账日期';
comment on column t_jz.fee is '金额';
comment on column t_jz.company is '对方公司';
--进账表加注释
comment on table t_jz is '进账';

oracle特有,对应序列如下:


create sequence s_t_customer;
create sequence s_t_cw;
create sequence s_t_cz;
create sequence s_t_gdzc;
create sequence s_t_gz;
create sequence s_t_jz;

企业员工财务系统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),--
	gh varchar(100)--工号
);

财务表创建语句如下:


--财务表注释
create table t_cw(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	cwName varchar(100),--姓名
	phone varchar(100),--电话
	age varchar(100),--年龄
	sex varchar(100),--
	gh varchar(100)--工号
);

出账表创建语句如下:


--出账表注释
create table t_cz(
	id int identity(1,1) primary key not null,--主键
	bh varchar(100),--流水编号
	title varchar(100),--标题
	content text,--内容
	showDate datetime,--出账日期
	fee int,--金额
	company varchar(100)--对方公司
);

固定资产表创建语句如下:


--固定资产表注释
create table t_gdzc(
	id int identity(1,1) primary key not null,--主键
	bh varchar(100),--流水编号
	title varchar(100),--资产名称
	content text,--内容
	showDate datetime,--购买日期
	fee int--金额
);

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


--员工工资表注释
create table t_gz(
	id int identity(1,1) primary key not null,--主键
	customerId int,--员工
	showDate datetime,--发工资日期
	fee1 int,--基础工资
	fee2 int,--绩效
	fee3 int,--奖金
	fee4 int--总工资
);

进账表创建语句如下:


--进账表注释
create table t_jz(
	id int identity(1,1) primary key not null,--主键
	bh varchar(100),--流水编号
	title varchar(100),--标题
	content text,--内容
	showDate datetime,--进账日期
	fee int,--金额
	company 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 String gh;
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 String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
}

财务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_cw")
public class Cw {
//主键
@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 cwName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//工号
private String gh;
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 getCwName() {return cwName;}
public void setCwName(String cwName) {this.cwName = cwName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
}

出账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_cz")
public class Cz {
//主键
@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 bh;
//标题
private String title;
//内容
private String content;
//出账日期
private Date showDate;
//金额
private Integer fee;
//对方公司
private String company;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getCompany() {return company;}
public void setCompany(String company) {this.company = company;}
}

固定资产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_gdzc")
public class Gdzc {
//主键
@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 bh;
//资产名称
private String title;
//内容
private String content;
//购买日期
private Date showDate;
//金额
private Integer fee;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
}

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


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

//员工工资
@Table(name = "t_gz")
public class Gz {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//发工资日期
private Date showDate;
//基础工资
private Integer fee1;
//绩效
private Integer fee2;
//奖金
private Integer fee3;
//总工资
private Integer fee4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee1() {return fee1;}
public void setFee1(Integer fee1) {this.fee1 = fee1;}
public Integer getFee2() {return fee2;}
public void setFee2(Integer fee2) {this.fee2 = fee2;}
public Integer getFee3() {return fee3;}
public void setFee3(Integer fee3) {this.fee3 = fee3;}
public Integer getFee4() {return fee4;}
public void setFee4(Integer fee4) {this.fee4 = fee4;}
}

进账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_jz")
public class Jz {
//主键
@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 bh;
//标题
private String title;
//内容
private String content;
//进账日期
private Date showDate;
//金额
private Integer fee;
//对方公司
private String company;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getCompany() {return company;}
public void setCompany(String company) {this.company = company;}
}

企业员工财务系统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 String gh;
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 String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
}

财务javaBean创建语句如下:


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

//财务
public class Cw  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 cwName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//工号
private String gh;
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 getCwName() {return cwName;}
public void setCwName(String cwName) {this.cwName = cwName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
}

出账javaBean创建语句如下:


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

//出账
public class Cz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//流水编号
private String bh;
//标题
private String title;
//内容
private String content;
//出账日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//金额
private Integer fee;
//对方公司
private String company;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getCompany() {return company;}
public void setCompany(String company) {this.company = company;}
}

固定资产javaBean创建语句如下:


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

//固定资产
public class Gdzc  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//流水编号
private String bh;
//资产名称
private String title;
//内容
private String content;
//购买日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//金额
private Integer fee;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
}

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


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

//员工工资
public class Gz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer customerId;
//发工资日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//基础工资
private Integer fee1;
//绩效
private Integer fee2;
//奖金
private Integer fee3;
//总工资
private Integer fee4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee1() {return fee1;}
public void setFee1(Integer fee1) {this.fee1 = fee1;}
public Integer getFee2() {return fee2;}
public void setFee2(Integer fee2) {this.fee2 = fee2;}
public Integer getFee3() {return fee3;}
public void setFee3(Integer fee3) {this.fee3 = fee3;}
public Integer getFee4() {return fee4;}
public void setFee4(Integer fee4) {this.fee4 = fee4;}
}

进账javaBean创建语句如下:


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

//进账
public class Jz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//流水编号
private String bh;
//标题
private String title;
//内容
private String content;
//进账日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//金额
private Integer fee;
//对方公司
private String company;
public String getBh() {return bh;}
public void setBh(String bh) {this.bh = bh;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getCompany() {return company;}
public void setCompany(String company) {this.company = company;}
}

相关毕业设计源码

酒店管理系统的设计与实现

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

学生实训管理系统

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

基于JSP的房屋出租管理系统系统设计,java设计与开发

基于JSP的房屋出租管理系统系统设计(fangwuchuzu),提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

教师管理系统(xba35)_mysql_oracle代码分享

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

集美大学诚毅学院校友录系统设计与开发

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

个人信息管理系统(xaa39)_mysql_oracle代码分享

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

基于Java的网吧管理系统的设计与实现

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

企业员工财务系统(xda5)_mysql_oracle代码分享

企业员工财务系统,提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

评论