当前位置: 首页 > news >正文

公司网站建设及维护有没有专门招代理的网站

公司网站建设及维护,有没有专门招代理的网站,阿里巴巴上做网站要多少钱,静态网站做毕业设计公寓管理系统mysql数据库创建语句公寓管理系统mysql数据库创建语句公寓管理系统mysql数据库创建语句公寓管理系统oracle数据库创建语句公寓管理系统oracle数据库创建语句公寓管理系统sqlserver数据库创建语句公寓管理系统sqlserver数据库创建语句公寓管理系统springspringMVCmy…

  • 公寓管理系统mysql数据库创建语句公寓管理系统mysql数据库创建语句公寓管理系统mysql数据库创建语句
  • 公寓管理系统oracle数据库创建语句公寓管理系统oracle数据库创建语句
  • 公寓管理系统sqlserver数据库创建语句公寓管理系统sqlserver数据库创建语句
  • 公寓管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计

​​

公寓管理系统登录注册界面

公寓管理系统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');

SQL

Copy

员工表创建语句如下:

create table t_customer(id int primary key auto_increment comment '主键',username varchar(100) comment '账号',password varchar(100) comment '密码',customerName varchar(100) comment '姓名',headPic varchar(100) comment '头像',phone varchar(100) comment '电话',age varchar(100) comment '年龄',sex varchar(100) comment ''
) comment '员工';

SQL

Copy

公告表创建语句如下:

create table t_gonggao(id int primary key auto_increment comment '主键',title varchar(100) comment '标题',content text comment '内容',insertDate datetime comment '发起日期'
) comment '公告';

SQL

Copy

公寓表创建语句如下:

create table t_gy(id int primary key auto_increment comment '主键',gyName varchar(100) comment '公寓名称',typesId int comment '类型',gywz varchar(100) comment '公寓位置',pic varchar(100) comment '图片',fzr varchar(100) comment '负责人',phone varchar(100) comment '负责人电话',mj int comment '面积',cqlx varchar(100) comment '产权类型',status varchar(100) comment '',zje int comment '总金额',bz text comment '备注'
) comment '公寓';

SQL

Copy

留言表创建语句如下:

create table t_ly(id int primary key auto_increment comment '主键',customerId int comment '员工',content text comment '内容',insertDate datetime comment '发起日期',back text comment '回复',status varchar(100) comment '状态'
) comment '留言';

SQL

Copy

公寓类型表创建语句如下:

create table t_types(id int primary key auto_increment comment '主键',typesName varchar(100) comment '公寓类型'
) comment '公寓类型';

SQL

Copy

公寓销售表创建语句如下:

create table t_xs(id int primary key auto_increment comment '主键',gyId int comment '公寓',typesId int comment '公寓类型',zje int comment '总金额',ht varchar(100) comment '合同',fzr varchar(100) comment '负责人',phone varchar(100) comment '负责人电话',showDate datetime comment '操作日期'
) comment '公寓销售';

SQL

Copy

公寓租赁表创建语句如下:

create table t_zl(id int primary key auto_increment comment '主键',gyId int comment '公寓',typesId int comment '公寓类型',beginDate datetime comment '开始日期',endDate datetime comment '结束日期',ydj int comment '月单价',zje int comment '总金额',zq int comment '租期/月',ht varchar(100) comment '合同',fzr varchar(100) comment '负责人',phone varchar(100) comment '负责人电话',showDate datetime comment '操作日期'
) comment '公寓租赁';

SQL

Copy

公寓管理系统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 '超级管理员';

SQL

Copy

员工表创建语句如下:

create table t_customer(id integer,username varchar(100),password varchar(100),customerName varchar(100),headPic varchar(100),phone varchar(100),age varchar(100),sex 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.headPic is '头像';
comment on column t_customer.phone is '电话';
comment on column t_customer.age is '年龄';
comment on column t_customer.sex is '';
--员工表加注释
comment on table t_customer is '员工';

SQL

Copy

公告表创建语句如下:

create table t_gonggao(id integer,title varchar(100),content text,insertDate datetime
);
--公告字段加注释
comment on column t_gonggao.id is '主键';
comment on column t_gonggao.title is '标题';
comment on column t_gonggao.content is '内容';
comment on column t_gonggao.insertDate is '发起日期';
--公告表加注释
comment on table t_gonggao is '公告';

SQL

Copy

公寓表创建语句如下:

create table t_gy(id integer,gyName varchar(100),typesId int,gywz varchar(100),pic varchar(100),fzr varchar(100),phone varchar(100),mj int,cqlx varchar(100),status varchar(100),zje int,bz text
);
--公寓字段加注释
comment on column t_gy.id is '主键';
comment on column t_gy.gyName is '公寓名称';
comment on column t_gy.typesId is '类型';
comment on column t_gy.gywz is '公寓位置';
comment on column t_gy.pic is '图片';
comment on column t_gy.fzr is '负责人';
comment on column t_gy.phone is '负责人电话';
comment on column t_gy.mj is '面积';
comment on column t_gy.cqlx is '产权类型';
comment on column t_gy.status is '';
comment on column t_gy.zje is '总金额';
comment on column t_gy.bz is '备注';
--公寓表加注释
comment on table t_gy is '公寓';

SQL

Copy

留言表创建语句如下:

create table t_ly(id integer,customerId int,content text,insertDate datetime,back text,status varchar(100)
);
--留言字段加注释
comment on column t_ly.id is '主键';
comment on column t_ly.customerId is '员工';
comment on column t_ly.content is '内容';
comment on column t_ly.insertDate is '发起日期';
comment on column t_ly.back is '回复';
comment on column t_ly.status is '状态';
--留言表加注释
comment on table t_ly is '留言';

SQL

Copy

公寓类型表创建语句如下:

create table t_types(id integer,typesName varchar(100)
);
--公寓类型字段加注释
comment on column t_types.id is '主键';
comment on column t_types.typesName is '公寓类型';
--公寓类型表加注释
comment on table t_types is '公寓类型';

SQL

Copy

公寓销售表创建语句如下:

create table t_xs(id integer,gyId int,typesId int,zje int,ht varchar(100),fzr varchar(100),phone varchar(100),showDate datetime
);
--公寓销售字段加注释
comment on column t_xs.id is '主键';
comment on column t_xs.gyId is '公寓';
comment on column t_xs.typesId is '公寓类型';
comment on column t_xs.zje is '总金额';
comment on column t_xs.ht is '合同';
comment on column t_xs.fzr is '负责人';
comment on column t_xs.phone is '负责人电话';
comment on column t_xs.showDate is '操作日期';
--公寓销售表加注释
comment on table t_xs is '公寓销售';

SQL

Copy

公寓租赁表创建语句如下:

create table t_zl(id integer,gyId int,typesId int,beginDate datetime,endDate datetime,ydj int,zje int,zq int,ht varchar(100),fzr varchar(100),phone varchar(100),showDate datetime
);
--公寓租赁字段加注释
comment on column t_zl.id is '主键';
comment on column t_zl.gyId is '公寓';
comment on column t_zl.typesId is '公寓类型';
comment on column t_zl.beginDate is '开始日期';
comment on column t_zl.endDate is '结束日期';
comment on column t_zl.ydj is '月单价';
comment on column t_zl.zje is '总金额';
comment on column t_zl.zq is '租期/月';
comment on column t_zl.ht is '合同';
comment on column t_zl.fzr is '负责人';
comment on column t_zl.phone is '负责人电话';
comment on column t_zl.showDate is '操作日期';
--公寓租赁表加注释
comment on table t_zl is '公寓租赁';

SQL

Copy

oracle特有,对应序列如下:

create sequence s_t_customer;
create sequence s_t_gonggao;
create sequence s_t_gy;
create sequence s_t_ly;
create sequence s_t_types;
create sequence s_t_xs;
create sequence s_t_zl;

SQL

Copy

公寓管理系统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');

SQL

Copy

员工表创建语句如下:

--员工表注释
create table t_customer(id int identity(1,1) primary key not null,--主键username varchar(100),--账号password varchar(100),--密码customerName varchar(100),--姓名headPic varchar(100),--头像phone varchar(100),--电话age varchar(100),--年龄sex varchar(100)--
);

SQL

Copy

公告表创建语句如下:

--公告表注释
create table t_gonggao(id int identity(1,1) primary key not null,--主键title varchar(100),--标题content text,--内容insertDate datetime--发起日期
);

SQL

Copy

公寓表创建语句如下:

--公寓表注释
create table t_gy(id int identity(1,1) primary key not null,--主键gyName varchar(100),--公寓名称typesId int,--类型gywz varchar(100),--公寓位置pic varchar(100),--图片fzr varchar(100),--负责人phone varchar(100),--负责人电话mj int,--面积cqlx varchar(100),--产权类型status varchar(100),--zje int,--总金额bz text--备注
);

SQL

Copy

留言表创建语句如下:

--留言表注释
create table t_ly(id int identity(1,1) primary key not null,--主键customerId int,--员工content text,--内容insertDate datetime,--发起日期back text,--回复status varchar(100)--状态
);

SQL

Copy

公寓类型表创建语句如下:

--公寓类型表注释
create table t_types(id int identity(1,1) primary key not null,--主键typesName varchar(100)--公寓类型
);

SQL

Copy

公寓销售表创建语句如下:

--公寓销售表注释
create table t_xs(id int identity(1,1) primary key not null,--主键gyId int,--公寓typesId int,--公寓类型zje int,--总金额ht varchar(100),--合同fzr varchar(100),--负责人phone varchar(100),--负责人电话showDate datetime--操作日期
);

SQL

Copy

公寓租赁表创建语句如下:

--公寓租赁表注释
create table t_zl(id int identity(1,1) primary key not null,--主键gyId int,--公寓typesId int,--公寓类型beginDate datetime,--开始日期endDate datetime,--结束日期ydj int,--月单价zje int,--总金额zq int,--租期/月ht varchar(100),--合同fzr varchar(100),--负责人phone varchar(100),--负责人电话showDate datetime--操作日期
);

SQL

Copy

公寓管理系统登录后主页

Copy

公寓管理系统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 headPic;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
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 getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
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;}
}

Java

Copy

公告javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;//公告
public class Gonggao  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//内容
private String content;
//发起日期
private Date insertDate;
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;}
}

Java

Copy

公寓javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;//公寓
public class Gy  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//公寓名称
private String gyName;
//类型
private Long typesId;
//公寓位置
private String gywz;
//图片
private String pic;
//负责人
private String fzr;
//负责人电话
private String phone;
//面积
private Integer mj;
//产权类型
private String cqlx;
//
private String status;
//总金额
private Integer zje;
//备注
private String bz;
public String getGyName() {return gyName;}
public void setGyName(String gyName) {this.gyName = gyName;}
public Long getTypesId() {return typesId;}
public void setTypesId(Long typesId) {this.typesId = typesId;}
public String getGywz() {return gywz;}
public void setGywz(String gywz) {this.gywz = gywz;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getFzr() {return fzr;}
public void setFzr(String fzr) {this.fzr = fzr;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getMj() {return mj;}
public void setMj(Integer mj) {this.mj = mj;}
public String getCqlx() {return cqlx;}
public void setCqlx(String cqlx) {this.cqlx = cqlx;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
public String getBz() {return bz;}
public void setBz(String bz) {this.bz = bz;}
}

Java

Copy

留言javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;//留言
public class Ly  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Long customerId;
//内容
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 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;}
}

Java

Copy

公寓类型javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;//公寓类型
public class Types  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//公寓类型
private String typesName;
public String getTypesName() {return typesName;}
public void setTypesName(String typesName) {this.typesName = typesName;}
}

Java

Copy

公寓销售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 Long gyId;
//公寓类型
private Long typesId;
//总金额
private Integer zje;
//合同
private String ht;
//负责人
private String fzr;
//负责人电话
private String phone;
//操作日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
public Long getGyId() {return gyId;}
public void setGyId(Long gyId) {this.gyId = gyId;}
public Long getTypesId() {return typesId;}
public void setTypesId(Long typesId) {this.typesId = typesId;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
public String getHt() {return ht;}
public void setHt(String ht) {this.ht = ht;}
public String getFzr() {return fzr;}
public void setFzr(String fzr) {this.fzr = fzr;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}

Java

Copy

公寓租赁javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;//公寓租赁
public class Zl  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//公寓
private Long gyId;
//公寓类型
private Long typesId;
//开始日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date beginDate;
//结束日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date endDate;
//月单价
private Integer ydj;
//总金额
private Integer zje;
//租期/月
private Integer zq;
//合同
private String ht;
//负责人
private String fzr;
//负责人电话
private String phone;
//操作日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
public Long getGyId() {return gyId;}
public void setGyId(Long gyId) {this.gyId = gyId;}
public Long getTypesId() {return typesId;}
public void setTypesId(Long typesId) {this.typesId = typesId;}
public Date getBeginDate() {return beginDate;}
public void setBeginDate(Date beginDate) {this.beginDate = beginDate;}
public Date getEndDate() {return endDate;}
public void setEndDate(Date endDate) {this.endDate = endDate;}
public Integer getYdj() {return ydj;}
public void setYdj(Integer ydj) {this.ydj = ydj;}
public Integer getZje() {return zje;}
public void setZje(Integer zje) {this.zje = zje;}
public Integer getZq() {return zq;}
public void setZq(Integer zq) {this.zq = zq;}
public String getHt() {return ht;}
public void setHt(String ht) {this.ht = ht;}
public String getFzr() {return fzr;}
public void setFzr(String fzr) {this.fzr = fzr;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
http://www.dtcms.com/a/510056.html

相关文章:

  • 山西大同企业做网站做h的小说网站
  • 田园综合体建设网站背景网站建设
  • 最好的国内科技网站建设wordpress 导航函数
  • app手机网站模板免费下载网络营销专业专升本考什么
  • 如何通过网站做网上报名系统泉州seo建站
  • 做网站的人 优帮云做简单的网站首页
  • 蓝色商务网站模板diy平台
  • 无锡城乡建设局网站三国网页游戏排行榜前十名
  • wap手机网站尺寸html网页设计作品中国传统文化
  • 网站开发公司排名360排名优化工具
  • 个人免费开发网站自助建微网站
  • 网站简易后台天津有哪些互联网公司
  • 盐城专业做网站的公司林州网站建设策划
  • 平台网站建设所需资质网站建设公司net2006
  • 怎样做像绿色和平组织类似的网站长宁做手机网站建设
  • 做做网站app企业网站运营问题
  • 深圳建英文网站公司做企业网站须知
  • 为网站的特色功能设计各种模板免费ppt模板免费
  • 杭州python做网站网站建设的一般过程包括哪些内容
  • 锡盟建设工程造价信息网站wordpress主题改中文版
  • 佛山建网站哪家好投资公司取名字大全
  • 网页制作网站素材网站建设维护方案ppt
  • 怎样注册平台网站虚拟主机网站建设过程
  • 网站搭建谷歌seo网站开发入门书籍推荐
  • 网站功能简介怎么创建小程序卖东西
  • 高端的咨询行业网站制作免费模板下载网站
  • 35个好的网站设计国外网站设计案例
  • 常用的网站开发语言百度快照怎么删除
  • 天津网站建设设计和幼儿做网站
  • 自己做网站接广告移动应用开发属于什么专业类别