基于WEB的面向小微企业的高可调整性一体化管理系统,javaweb毕业设计

基于WEB的面向小微企业的高可调整性一体化管理系统登录注册界面

基于WEB的面向小微企业的高可调整性一体化管理系统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_contact(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	phone varchar(100) comment '联系方式',
	content varchar(100) comment '内容',
	insertDate datetime comment '日期'
) comment '建议';

客户表创建语句如下:


create table t_customer(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	name varchar(100) comment '姓名',
	sex varchar(100) comment '性别',
	address varchar(100) comment '地址',
	mobile varchar(100) comment '手机',
	account varchar(100) comment '',
	fr varchar(100) comment ''
) comment '客户';

进出帐表创建语句如下:


create table t_jcz(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	orderId varchar(100) comment '订单',
	kpId varchar(100) comment '开票',
	v1 varchar(100) comment '进账或出账',
	v2 varchar(100) comment '支付类型',
	v3 varchar(100) comment '金额',
	v4 varchar(100) comment '备注'
) comment '进出帐';

开票表创建语句如下:


create table t_kp(
	id int primary key auto_increment comment '主键',
	customerId int comment '客户',
	toId int comment '供货商',
	num varchar(100) comment '订单号',
	orderId int comment '订单',
	kpNum varchar(100) comment '开票号',
	v1 varchar(100) comment '开票信息',
	v2 varchar(100) comment '开票金额',
	v3 varchar(100) comment '备注'
) comment '开票';

订单表创建语句如下:


create table t_order(
	id int primary key auto_increment comment '主键',
	customerId int comment '客户',
	toId int comment '供货方',
	num varchar(100) comment '订单号',
	v1 varchar(100) comment '运输信息',
	v2 varchar(100) comment '单价',
	v3 varchar(100) comment '数量',
	v4 varchar(100) comment '物品名称',
	v5 varchar(100) comment '总价',
	v6 varchar(100) comment '仓库',
	v7 varchar(100) comment '状态'
) comment '订单';

商品名称管理表创建语句如下:


create table t_sp(
	id int primary key auto_increment comment '主键',
	spName varchar(100) comment '商品名称'
) comment '商品名称管理';

基于WEB的面向小微企业的高可调整性一体化管理系统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_contact(
	id integer,
	customerId int,
	phone varchar(100),
	content varchar(100),
	insertDate datetime
);
--建议字段加注释
comment on column t_contact.id is '主键';
comment on column t_contact.customerId is '用户';
comment on column t_contact.phone is '联系方式';
comment on column t_contact.content is '内容';
comment on column t_contact.insertDate is '日期';
--建议表加注释
comment on table t_contact is '建议';

客户表创建语句如下:


create table t_customer(
	id integer,
	username varchar(100),
	password varchar(100),
	name varchar(100),
	sex varchar(100),
	address varchar(100),
	mobile varchar(100),
	account varchar(100),
	fr 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.name is '姓名';
comment on column t_customer.sex is '性别';
comment on column t_customer.address is '地址';
comment on column t_customer.mobile is '手机';
comment on column t_customer.account is '';
comment on column t_customer.fr is '';
--客户表加注释
comment on table t_customer is '客户';

进出帐表创建语句如下:


create table t_jcz(
	id integer,
	customerId int,
	orderId varchar(100),
	kpId varchar(100),
	v1 varchar(100),
	v2 varchar(100),
	v3 varchar(100),
	v4 varchar(100)
);
--进出帐字段加注释
comment on column t_jcz.id is '主键';
comment on column t_jcz.customerId is '用户';
comment on column t_jcz.orderId is '订单';
comment on column t_jcz.kpId is '开票';
comment on column t_jcz.v1 is '进账或出账';
comment on column t_jcz.v2 is '支付类型';
comment on column t_jcz.v3 is '金额';
comment on column t_jcz.v4 is '备注';
--进出帐表加注释
comment on table t_jcz is '进出帐';

开票表创建语句如下:


create table t_kp(
	id integer,
	customerId int,
	toId int,
	num varchar(100),
	orderId int,
	kpNum varchar(100),
	v1 varchar(100),
	v2 varchar(100),
	v3 varchar(100)
);
--开票字段加注释
comment on column t_kp.id is '主键';
comment on column t_kp.customerId is '客户';
comment on column t_kp.toId is '供货商';
comment on column t_kp.num is '订单号';
comment on column t_kp.orderId is '订单';
comment on column t_kp.kpNum is '开票号';
comment on column t_kp.v1 is '开票信息';
comment on column t_kp.v2 is '开票金额';
comment on column t_kp.v3 is '备注';
--开票表加注释
comment on table t_kp is '开票';

订单表创建语句如下:


create table t_order(
	id integer,
	customerId int,
	toId int,
	num varchar(100),
	v1 varchar(100),
	v2 varchar(100),
	v3 varchar(100),
	v4 varchar(100),
	v5 varchar(100),
	v6 varchar(100),
	v7 varchar(100)
);
--订单字段加注释
comment on column t_order.id is '主键';
comment on column t_order.customerId is '客户';
comment on column t_order.toId is '供货方';
comment on column t_order.num is '订单号';
comment on column t_order.v1 is '运输信息';
comment on column t_order.v2 is '单价';
comment on column t_order.v3 is '数量';
comment on column t_order.v4 is '物品名称';
comment on column t_order.v5 is '总价';
comment on column t_order.v6 is '仓库';
comment on column t_order.v7 is '状态';
--订单表加注释
comment on table t_order is '订单';

商品名称管理表创建语句如下:


create table t_sp(
	id integer,
	spName varchar(100)
);
--商品名称管理字段加注释
comment on column t_sp.id is '主键';
comment on column t_sp.spName is '商品名称';
--商品名称管理表加注释
comment on table t_sp is '商品名称管理';

oracle特有,对应序列如下:


create sequence s_t_contact;
create sequence s_t_customer;
create sequence s_t_jcz;
create sequence s_t_kp;
create sequence s_t_order;
create sequence s_t_sp;

基于WEB的面向小微企业的高可调整性一体化管理系统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_contact(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	phone varchar(100),--联系方式
	content varchar(100),--内容
	insertDate datetime--日期
);

客户表创建语句如下:


--客户表注释
create table t_customer(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	name varchar(100),--姓名
	sex varchar(100),--性别
	address varchar(100),--地址
	mobile varchar(100),--手机
	account varchar(100),--
	fr varchar(100)--
);

进出帐表创建语句如下:


--进出帐表注释
create table t_jcz(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	orderId varchar(100),--订单
	kpId varchar(100),--开票
	v1 varchar(100),--进账或出账
	v2 varchar(100),--支付类型
	v3 varchar(100),--金额
	v4 varchar(100)--备注
);

开票表创建语句如下:


--开票表注释
create table t_kp(
	id int identity(1,1) primary key not null,--主键
	customerId int,--客户
	toId int,--供货商
	num varchar(100),--订单号
	orderId int,--订单
	kpNum varchar(100),--开票号
	v1 varchar(100),--开票信息
	v2 varchar(100),--开票金额
	v3 varchar(100)--备注
);

订单表创建语句如下:


--订单表注释
create table t_order(
	id int identity(1,1) primary key not null,--主键
	customerId int,--客户
	toId int,--供货方
	num varchar(100),--订单号
	v1 varchar(100),--运输信息
	v2 varchar(100),--单价
	v3 varchar(100),--数量
	v4 varchar(100),--物品名称
	v5 varchar(100),--总价
	v6 varchar(100),--仓库
	v7 varchar(100)--状态
);

商品名称管理表创建语句如下:


--商品名称管理表注释
create table t_sp(
	id int identity(1,1) primary key not null,--主键
	spName varchar(100)--商品名称
);

基于WEB的面向小微企业的高可调整性一体化管理系统登录后主页

基于WEB的面向小微企业的高可调整性一体化管理系统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_contact")
public class Contact {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//联系方式
private String phone;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

客户javaBean创建语句如下:


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

//客户
@Table(name = "t_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 name;
//性别
private String sex;
//地址
private String address;
//手机
private String mobile;
//
private String account;
//
private String fr;
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 getName() {return name;}
public void setName(String name) {this.name = name;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
public String getAccount() {return account;}
public void setAccount(String account) {this.account = account;}
public String getFr() {return fr;}
public void setFr(String fr) {this.fr = fr;}
}

进出帐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_jcz")
public class Jcz {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//订单
private String orderId;
//开票
private String kpId;
//进账或出账
private String v1;
//支付类型
private String v2;
//金额
private String v3;
//备注
private String v4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getOrderId() {return orderId;}
public void setOrderId(String orderId) {this.orderId = orderId;}
public String getKpId() {return kpId;}
public void setKpId(String kpId) {this.kpId = kpId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
}

开票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_kp")
public class Kp {
//主键
@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 Integer toId;
//订单号
private String num;
//订单
private Integer orderId;
//开票号
private String kpNum;
//开票信息
private String v1;
//开票金额
private String v2;
//备注
private String v3;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
public String getNum() {return num;}
public void setNum(String num) {this.num = num;}
public Integer getOrderId() {return orderId;}
public void setOrderId(Integer orderId) {this.orderId = orderId;}
public String getKpNum() {return kpNum;}
public void setKpNum(String kpNum) {this.kpNum = kpNum;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
}

订单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_order")
public class Order {
//主键
@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 Integer toId;
//订单号
private String num;
//运输信息
private String v1;
//单价
private String v2;
//数量
private String v3;
//物品名称
private String v4;
//总价
private String v5;
//仓库
private String v6;
//状态
private String v7;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
public String getNum() {return num;}
public void setNum(String num) {this.num = num;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV7() {return v7;}
public void setV7(String v7) {this.v7 = v7;}
}

商品名称管理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;
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
}

基于WEB的面向小微企业的高可调整性一体化管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:

建议javaBean创建语句如下:


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

//建议
public class Contact  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//联系方式
private String phone;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

客户javaBean创建语句如下:


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

//客户
public class 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 name;
//性别
private String sex;
//地址
private String address;
//手机
private String mobile;
//
private String account;
//
private String fr;
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 getName() {return name;}
public void setName(String name) {this.name = name;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
public String getAccount() {return account;}
public void setAccount(String account) {this.account = account;}
public String getFr() {return fr;}
public void setFr(String fr) {this.fr = fr;}
}

进出帐javaBean创建语句如下:


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

//进出帐
public class Jcz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//订单
private String orderId;
//开票
private String kpId;
//进账或出账
private String v1;
//支付类型
private String v2;
//金额
private String v3;
//备注
private String v4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getOrderId() {return orderId;}
public void setOrderId(String orderId) {this.orderId = orderId;}
public String getKpId() {return kpId;}
public void setKpId(String kpId) {this.kpId = kpId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
}

开票javaBean创建语句如下:


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

//开票
public class Kp  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//客户
private Integer customerId;
//供货商
private Integer toId;
//订单号
private String num;
//订单
private Integer orderId;
//开票号
private String kpNum;
//开票信息
private String v1;
//开票金额
private String v2;
//备注
private String v3;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
public String getNum() {return num;}
public void setNum(String num) {this.num = num;}
public Integer getOrderId() {return orderId;}
public void setOrderId(Integer orderId) {this.orderId = orderId;}
public String getKpNum() {return kpNum;}
public void setKpNum(String kpNum) {this.kpNum = kpNum;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
}

订单javaBean创建语句如下:


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

//订单
public class Order  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//客户
private Integer customerId;
//供货方
private Integer toId;
//订单号
private String num;
//运输信息
private String v1;
//单价
private String v2;
//数量
private String v3;
//物品名称
private String v4;
//总价
private String v5;
//仓库
private String v6;
//状态
private String v7;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
public String getNum() {return num;}
public void setNum(String num) {this.num = num;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV7() {return v7;}
public void setV7(String v7) {this.v7 = v7;}
}

商品名称管理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;
public String getSpName() {return spName;}
public void setSpName(String spName) {this.spName = spName;}
}

相关毕业设计源码

医院药物管理信息系统的设计与开发

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

小区物业管理app _部分源代码分享

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

日常教学档案管理系统

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

基于jsp的工地员工及建材管理系统

基于jsp的工地员工及建材管理系统,提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

在线公文管理系统(officeonlinesystem),java项目设计

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

基于web的游乐园员工管理系统

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

物流配送管理系统 _部分源代码分享

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

项目众包平台 _部分源代码分享

本次《项目众包平台》设计采用浏览器/服务器(B/S)结构,主要有以下功能模块:雇主管理模块、仲裁管理模块、系统管理模块。

评论