金融资产管理系统(xfa87)_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 '姓名',
	sex varchar(100) comment '性别',
	age varchar(100) comment '年龄',
	phone varchar(100) comment '电话',
	headPic varchar(100) comment '头像',
	sfz varchar(100) comment '身份证',
	address varchar(100) comment '地址'
) comment '用户';

客户经理表创建语句如下:


create table t_employee(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	employeeName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '',
	yggh varchar(100) comment '员工工号'
) comment '客户经理';

附件资料表创建语句如下:


create table t_fjzl(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '资料名称',
	fileUrl varchar(100) comment '资料下载',
	content text comment '资料说明'
) comment '附件资料';

领导表创建语句如下:


create table t_jingli(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	jinliName varchar(100) comment '姓名',
	phone varchar(100) comment '电话',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '',
	jljb varchar(100) comment '领导级别'
) comment '领导';

业务流程表创建语句如下:


create table t_order(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	orderNum varchar(100) comment '流程编号',
	content text comment '业务说明',
	fileUrl varchar(100) comment '附件',
	lx varchar(100) comment '',
	employeeId int comment '客户经理',
	insertDate datetime comment '发起日期',
	status varchar(100) comment '状态'
) comment '业务流程';

业务流程进展表创建语句如下:


create table t_orderlist(
	id int primary key auto_increment comment '主键',
	orderNum varchar(100) comment '流程编号',
	customerId int comment '客户',
	employeeId int comment '客户经理',
	fileUrl varchar(100) comment '附件',
	content text comment '业务处理过程',
	showDate datetime comment '处理日期'
) comment '业务流程进展';

金融政策法规表创建语句如下:


create table t_zcfg(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '标题',
	content text comment '内容',
	showDate datetime comment '日期'
) comment '金融政策法规';

在线咨询表创建语句如下:


create table t_zixun(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	title varchar(100) comment '问题',
	content text comment '内容',
	insertDate datetime comment '发起日期',
	back text comment '回复',
	status 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),
	sex varchar(100),
	age varchar(100),
	phone varchar(100),
	headPic varchar(100),
	sfz varchar(100),
	address 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.sex is '性别';
comment on column t_customer.age is '年龄';
comment on column t_customer.phone is '电话';
comment on column t_customer.headPic is '头像';
comment on column t_customer.sfz is '身份证';
comment on column t_customer.address is '地址';
--用户表加注释
comment on table t_customer is '用户';

客户经理表创建语句如下:


create table t_employee(
	id integer,
	username varchar(100),
	password varchar(100),
	employeeName varchar(100),
	phone varchar(100),
	age varchar(100),
	sex varchar(100),
	yggh varchar(100)
);
--客户经理字段加注释
comment on column t_employee.id is '主键';
comment on column t_employee.username is '账号';
comment on column t_employee.password is '密码';
comment on column t_employee.employeeName is '姓名';
comment on column t_employee.phone is '电话';
comment on column t_employee.age is '年龄';
comment on column t_employee.sex is '';
comment on column t_employee.yggh is '员工工号';
--客户经理表加注释
comment on table t_employee is '客户经理';

附件资料表创建语句如下:


create table t_fjzl(
	id integer,
	title varchar(100),
	fileUrl varchar(100),
	content text
);
--附件资料字段加注释
comment on column t_fjzl.id is '主键';
comment on column t_fjzl.title is '资料名称';
comment on column t_fjzl.fileUrl is '资料下载';
comment on column t_fjzl.content is '资料说明';
--附件资料表加注释
comment on table t_fjzl is '附件资料';

领导表创建语句如下:


create table t_jingli(
	id integer,
	username varchar(100),
	password varchar(100),
	jinliName varchar(100),
	phone varchar(100),
	age varchar(100),
	sex varchar(100),
	jljb varchar(100)
);
--领导字段加注释
comment on column t_jingli.id is '主键';
comment on column t_jingli.username is '账号';
comment on column t_jingli.password is '密码';
comment on column t_jingli.jinliName is '姓名';
comment on column t_jingli.phone is '电话';
comment on column t_jingli.age is '年龄';
comment on column t_jingli.sex is '';
comment on column t_jingli.jljb is '领导级别';
--领导表加注释
comment on table t_jingli is '领导';

业务流程表创建语句如下:


create table t_order(
	id integer,
	customerId int,
	orderNum varchar(100),
	content text,
	fileUrl varchar(100),
	lx varchar(100),
	employeeId int,
	insertDate datetime,
	status varchar(100)
);
--业务流程字段加注释
comment on column t_order.id is '主键';
comment on column t_order.customerId is '用户';
comment on column t_order.orderNum is '流程编号';
comment on column t_order.content is '业务说明';
comment on column t_order.fileUrl is '附件';
comment on column t_order.lx is '';
comment on column t_order.employeeId is '客户经理';
comment on column t_order.insertDate is '发起日期';
comment on column t_order.status is '状态';
--业务流程表加注释
comment on table t_order is '业务流程';

业务流程进展表创建语句如下:


create table t_orderlist(
	id integer,
	orderNum varchar(100),
	customerId int,
	employeeId int,
	fileUrl varchar(100),
	content text,
	showDate datetime
);
--业务流程进展字段加注释
comment on column t_orderlist.id is '主键';
comment on column t_orderlist.orderNum is '流程编号';
comment on column t_orderlist.customerId is '客户';
comment on column t_orderlist.employeeId is '客户经理';
comment on column t_orderlist.fileUrl is '附件';
comment on column t_orderlist.content is '业务处理过程';
comment on column t_orderlist.showDate is '处理日期';
--业务流程进展表加注释
comment on table t_orderlist is '业务流程进展';

金融政策法规表创建语句如下:


create table t_zcfg(
	id integer,
	title varchar(100),
	content text,
	showDate datetime
);
--金融政策法规字段加注释
comment on column t_zcfg.id is '主键';
comment on column t_zcfg.title is '标题';
comment on column t_zcfg.content is '内容';
comment on column t_zcfg.showDate is '日期';
--金融政策法规表加注释
comment on table t_zcfg is '金融政策法规';

在线咨询表创建语句如下:


create table t_zixun(
	id integer,
	customerId int,
	title varchar(100),
	content text,
	insertDate datetime,
	back text,
	status varchar(100)
);
--在线咨询字段加注释
comment on column t_zixun.id is '主键';
comment on column t_zixun.customerId is '用户';
comment on column t_zixun.title is '问题';
comment on column t_zixun.content is '内容';
comment on column t_zixun.insertDate is '发起日期';
comment on column t_zixun.back is '回复';
comment on column t_zixun.status is '状态';
--在线咨询表加注释
comment on table t_zixun is '在线咨询';

oracle特有,对应序列如下:


create sequence s_t_customer;
create sequence s_t_employee;
create sequence s_t_fjzl;
create sequence s_t_jingli;
create sequence s_t_order;
create sequence s_t_orderlist;
create sequence s_t_zcfg;
create sequence s_t_zixun;

金融资产管理系统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),--姓名
	sex varchar(100),--性别
	age varchar(100),--年龄
	phone varchar(100),--电话
	headPic varchar(100),--头像
	sfz varchar(100),--身份证
	address varchar(100)--地址
);

客户经理表创建语句如下:


--客户经理表注释
create table t_employee(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	employeeName varchar(100),--姓名
	phone varchar(100),--电话
	age varchar(100),--年龄
	sex varchar(100),--
	yggh varchar(100)--员工工号
);

附件资料表创建语句如下:


--附件资料表注释
create table t_fjzl(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--资料名称
	fileUrl varchar(100),--资料下载
	content text--资料说明
);

领导表创建语句如下:


--领导表注释
create table t_jingli(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	jinliName varchar(100),--姓名
	phone varchar(100),--电话
	age varchar(100),--年龄
	sex varchar(100),--
	jljb varchar(100)--领导级别
);

业务流程表创建语句如下:


--业务流程表注释
create table t_order(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	orderNum varchar(100),--流程编号
	content text,--业务说明
	fileUrl varchar(100),--附件
	lx varchar(100),--
	employeeId int,--客户经理
	insertDate datetime,--发起日期
	status varchar(100)--状态
);

业务流程进展表创建语句如下:


--业务流程进展表注释
create table t_orderlist(
	id int identity(1,1) primary key not null,--主键
	orderNum varchar(100),--流程编号
	customerId int,--客户
	employeeId int,--客户经理
	fileUrl varchar(100),--附件
	content text,--业务处理过程
	showDate datetime--处理日期
);

金融政策法规表创建语句如下:


--金融政策法规表注释
create table t_zcfg(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--标题
	content text,--内容
	showDate datetime--日期
);

在线咨询表创建语句如下:


--在线咨询表注释
create table t_zixun(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	title varchar(100),--问题
	content text,--内容
	insertDate datetime,--发起日期
	back text,--回复
	status 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 sex;
//年龄
private String age;
//电话
private String phone;
//头像
private String headPic;
//身份证
private String sfz;
//地址
private String address;
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 getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getSfz() {return sfz;}
public void setSfz(String sfz) {this.sfz = sfz;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

客户经理javaBean创建语句如下:


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

//客户经理
@Table(name = "t_employee")
public class Employee {
//主键
@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 employeeName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//员工工号
private String yggh;
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 getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
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 getYggh() {return yggh;}
public void setYggh(String yggh) {this.yggh = yggh;}
}

附件资料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_fjzl")
public class Fjzl {
//主键
@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 title;
//资料下载
private String fileUrl;
//资料说明
private String content;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

领导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_jingli")
public class Jingli {
//主键
@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 jinliName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//领导级别
private String jljb;
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 getJinliName() {return jinliName;}
public void setJinliName(String jinliName) {this.jinliName = jinliName;}
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 getJljb() {return jljb;}
public void setJljb(String jljb) {this.jljb = jljb;}
}

业务流程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 Long customerId;
//流程编号
private String orderNum;
//业务说明
private String content;
//附件
private String fileUrl;
//
private String lx;
//客户经理
private Long employeeId;
//发起日期
private Date insertDate;
//状态
private String status;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
public Long getEmployeeId() {return employeeId;}
public void setEmployeeId(Long employeeId) {this.employeeId = employeeId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}

业务流程进展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_orderlist")
public class Orderlist {
//主键
@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 orderNum;
//客户
private Long customerId;
//客户经理
private Long employeeId;
//附件
private String fileUrl;
//业务处理过程
private String content;
//处理日期
private Date showDate;
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public Long getEmployeeId() {return employeeId;}
public void setEmployeeId(Long employeeId) {this.employeeId = employeeId;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
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;}
}

金融政策法规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_zcfg")
public class Zcfg {
//主键
@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 title;
//内容
private String content;
//日期
private Date showDate;
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;}
}

在线咨询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_zixun")
public class Zixun {
//主键
@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 Long customerId;
//问题
private String title;
//内容
private String content;
//发起日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
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 getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}

金融资产管理系统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 sex;
//年龄
private String age;
//电话
private String phone;
//头像
private String headPic;
//身份证
private String sfz;
//地址
private String address;
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 getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getSfz() {return sfz;}
public void setSfz(String sfz) {this.sfz = sfz;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

客户经理javaBean创建语句如下:


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

//客户经理
public class Employee  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 employeeName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//员工工号
private String yggh;
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 getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
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 getYggh() {return yggh;}
public void setYggh(String yggh) {this.yggh = yggh;}
}

附件资料javaBean创建语句如下:


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

//附件资料
public class Fjzl  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//资料名称
private String title;
//资料下载
private String fileUrl;
//资料说明
private String content;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

领导javaBean创建语句如下:


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

//领导
public class Jingli  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 jinliName;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//领导级别
private String jljb;
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 getJinliName() {return jinliName;}
public void setJinliName(String jinliName) {this.jinliName = jinliName;}
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 getJljb() {return jljb;}
public void setJljb(String jljb) {this.jljb = jljb;}
}

业务流程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 Long customerId;
//流程编号
private String orderNum;
//业务说明
private String content;
//附件
private String fileUrl;
//
private String lx;
//客户经理
private Long employeeId;
//发起日期
private Date insertDate;
//状态
private String status;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
public Long getEmployeeId() {return employeeId;}
public void setEmployeeId(Long employeeId) {this.employeeId = employeeId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}

业务流程进展javaBean创建语句如下:


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

//业务流程进展
public class Orderlist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//流程编号
private String orderNum;
//客户
private Long customerId;
//客户经理
private Long employeeId;
//附件
private String fileUrl;
//业务处理过程
private String content;
//处理日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public Long getEmployeeId() {return employeeId;}
public void setEmployeeId(Long employeeId) {this.employeeId = employeeId;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
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;}
}

金融政策法规javaBean创建语句如下:


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

//金融政策法规
public class Zcfg  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//内容
private String content;
//日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
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;}
}

在线咨询javaBean创建语句如下:


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

//在线咨询
public class Zixun  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Long customerId;
//问题
private String title;
//内容
private String content;
//发起日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
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 getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}

相关毕业设计源码

美食论坛系统设计与实现

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

景区人流量分析管理系统的设计与实现

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

网络招标评审系统(zhaobiao_system),基于java毕业设计

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

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

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

基于Spring MVC学生信息管理子系统的实现,java设计与开发

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

基于WEB的案件信息查询与分析系统设计,java项目设计

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

兴胜路社区居民健康档案管理系统的设计与实现

兴胜路社区居民健康档案管理系统的设计与实现(jumingjiankang),提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

装修公司业务流程管理系统的设计与实现

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

基于web的学生用品采购系统,javaweb毕业设计

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

评论