毕业设计_基于安卓的移动植物工厂智能监控系统

在这里插入图片描述
基于安卓的移动植物工厂智能监控系统mysql数据库创建语句
基于安卓的移动植物工厂智能监控系统oracle数据库创建语句
基于安卓的移动植物工厂智能监控系统sqlserver数据库创建语句
基于安卓的移动植物工厂智能监控系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计
基于安卓的移动植物工厂智能监控系统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’);
SQLCopy
分类表创建语句如下:

create table t_bk(
id int primary key auto_increment comment ‘主键’,
bkName varchar(100) comment ‘分类名称’
) comment ‘分类’;
SQLCopy
建议表创建语句如下:

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 ‘建议’;
SQLCopy
客户表创建语句如下:

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 ‘性别’,
address varchar(100) comment ‘地址’,
phone varchar(100) comment ‘手机’,
account int comment ‘账户’,
jf int comment ‘积分’,
email varchar(100) comment ‘邮箱’,
headPic varchar(100) comment ‘头像’
) comment ‘客户’;
SQLCopy
留言表创建语句如下:

create table t_liuyan(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘用户’,
content varchar(100) comment ‘内容’,
insertDate datetime comment ‘日期’,
back varchar(100) comment ‘回复’,
status varchar(100) comment ‘状态’
) comment ‘留言’;
SQLCopy
评论表创建语句如下:

create table t_pinglun(
id int primary key auto_increment comment ‘主键’,
wdxxId int comment ‘评论信息’,
customerId int comment ‘评论人’,
content varchar(100) comment ‘评论内容’,
insertDate datetime comment ‘评论日期’
) comment ‘评论’;
SQLCopy
植物监控记录表创建语句如下:

create table t_wdxx(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘记录人’,
title int comment ‘温度’,
pic varchar(100) comment ‘图片’,
content int comment ‘湿度’,
zan int comment ‘’,
insertDate datetime comment ‘记录日期’,
nologin int comment ‘高度’,
bkId int comment ‘’
) comment ‘植物监控记录’;
SQLCopy
资讯表创建语句如下:

create table t_zx(
id int primary key auto_increment comment ‘主键’,
title varchar(100) comment ‘标题’,
content varchar(100) comment ‘内容’,
pic varchar(100) comment ‘图片’,
showDate varchar(100) comment ‘’
) comment ‘资讯’;
SQLCopy
基于安卓的移动植物工厂智能监控系统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 ‘超级管理员’;
SQLCopy
分类表创建语句如下:

create table t_bk(
id integer,
bkName varchar(100)
);
–分类字段加注释
comment on column t_bk.id is ‘主键’;
comment on column t_bk.bkName is ‘分类名称’;
–分类表加注释
comment on table t_bk is ‘分类’;
SQLCopy
建议表创建语句如下:

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 ‘建议’;
SQLCopy
客户表创建语句如下:

create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
sex varchar(100),
address varchar(100),
phone varchar(100),
account int,
jf int,
email varchar(100),
headPic 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.address is ‘地址’;
comment on column t_customer.phone is ‘手机’;
comment on column t_customer.account is ‘账户’;
comment on column t_customer.jf is ‘积分’;
comment on column t_customer.email is ‘邮箱’;
comment on column t_customer.headPic is ‘头像’;
–客户表加注释
comment on table t_customer is ‘客户’;
SQLCopy
留言表创建语句如下:

create table t_liuyan(
id integer,
customerId int,
content varchar(100),
insertDate datetime,
back varchar(100),
status varchar(100)
);
–留言字段加注释
comment on column t_liuyan.id is ‘主键’;
comment on column t_liuyan.customerId is ‘用户’;
comment on column t_liuyan.content is ‘内容’;
comment on column t_liuyan.insertDate is ‘日期’;
comment on column t_liuyan.back is ‘回复’;
comment on column t_liuyan.status is ‘状态’;
–留言表加注释
comment on table t_liuyan is ‘留言’;
SQLCopy
评论表创建语句如下:

create table t_pinglun(
id integer,
wdxxId int,
customerId int,
content varchar(100),
insertDate datetime
);
–评论字段加注释
comment on column t_pinglun.id is ‘主键’;
comment on column t_pinglun.wdxxId is ‘评论信息’;
comment on column t_pinglun.customerId is ‘评论人’;
comment on column t_pinglun.content is ‘评论内容’;
comment on column t_pinglun.insertDate is ‘评论日期’;
–评论表加注释
comment on table t_pinglun is ‘评论’;
SQLCopy
植物监控记录表创建语句如下:

create table t_wdxx(
id integer,
customerId int,
title int,
pic varchar(100),
content int,
zan int,
insertDate datetime,
nologin int,
bkId int
);
–植物监控记录字段加注释
comment on column t_wdxx.id is ‘主键’;
comment on column t_wdxx.customerId is ‘记录人’;
comment on column t_wdxx.title is ‘温度’;
comment on column t_wdxx.pic is ‘图片’;
comment on column t_wdxx.content is ‘湿度’;
comment on column t_wdxx.zan is ‘’;
comment on column t_wdxx.insertDate is ‘记录日期’;
comment on column t_wdxx.nologin is ‘高度’;
comment on column t_wdxx.bkId is ‘’;
–植物监控记录表加注释
comment on table t_wdxx is ‘植物监控记录’;
SQLCopy
资讯表创建语句如下:

create table t_zx(
id integer,
title varchar(100),
content varchar(100),
pic varchar(100),
showDate varchar(100)
);
–资讯字段加注释
comment on column t_zx.id is ‘主键’;
comment on column t_zx.title is ‘标题’;
comment on column t_zx.content is ‘内容’;
comment on column t_zx.pic is ‘图片’;
comment on column t_zx.showDate is ‘’;
–资讯表加注释
comment on table t_zx is ‘资讯’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_bk;
create sequence s_t_contact;
create sequence s_t_customer;
create sequence s_t_liuyan;
create sequence s_t_pinglun;
create sequence s_t_wdxx;
create sequence s_t_zx;
SQLCopy
基于安卓的移动植物工厂智能监控系统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’);
SQLCopy
分类表创建语句如下:

–分类表注释
create table t_bk(
id int identity(1,1) primary key not null,–主键
bkName varchar(100)–分类名称
);
SQLCopy
建议表创建语句如下:

–建议表注释
create table t_contact(
id int identity(1,1) primary key not null,–主键
customerId int,–用户
phone varchar(100),–联系方式
content varchar(100),–内容
insertDate datetime–日期
);
SQLCopy
客户表创建语句如下:

–客户表注释
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),–性别
address varchar(100),–地址
phone varchar(100),–手机
account int,–账户
jf int,–积分
email varchar(100),–邮箱
headPic varchar(100)–头像
);
SQLCopy
留言表创建语句如下:

–留言表注释
create table t_liuyan(
id int identity(1,1) primary key not null,–主键
customerId int,–用户
content varchar(100),–内容
insertDate datetime,–日期
back varchar(100),–回复
status varchar(100)–状态
);
SQLCopy
评论表创建语句如下:

–评论表注释
create table t_pinglun(
id int identity(1,1) primary key not null,–主键
wdxxId int,–评论信息
customerId int,–评论人
content varchar(100),–评论内容
insertDate datetime–评论日期
);
SQLCopy
植物监控记录表创建语句如下:

–植物监控记录表注释
create table t_wdxx(
id int identity(1,1) primary key not null,–主键
customerId int,–记录人
title int,–温度
pic varchar(100),–图片
content int,–湿度
zan int,–
insertDate datetime,–记录日期
nologin int,–高度
bkId int–
);
SQLCopy
资讯表创建语句如下:

–资讯表注释
create table t_zx(
id int identity(1,1) primary key not null,–主键
title varchar(100),–标题
content varchar(100),–内容
pic varchar(100),–图片
showDate varchar(100)–
);
SQLCopy
基于安卓的移动植物工厂智能监控系统登录后主页
基于安卓的移动植物工厂智能监控系统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_bk”)
public class Bk {
//主键
@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 bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}
JavaCopy
建议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;}
}
JavaCopy
客户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 address;
//手机
private String phone;
//账户
private Integer account;
//积分
private Integer jf;
//邮箱
private String email;
//头像
private String headPic;
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 getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getAccount() {return account;}
public void setAccount(Integer account) {this.account = account;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public String getEmail() {return email;}
public void setEmail(String email) {this.email = email;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
}
JavaCopy
留言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_liuyan”)
public class Liuyan {
//主键
@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 content;
//日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer 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;}
}
JavaCopy
评论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_pinglun”)
public class Pinglun {
//主键
@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 wdxxId;
//评论人
private Integer customerId;
//评论内容
private String content;
//评论日期
private Date insertDate;
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer 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;}
}
JavaCopy
植物监控记录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_wdxx”)
public class Wdxx {
//主键
@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 title;
//图片
private String pic;
//湿度
private Integer content;
//
private Integer zan;
//记录日期
private Date insertDate;
//高度
private Integer nologin;
//
private Integer bkId;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getTitle() {return title;}
public void setTitle(Integer title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Integer getContent() {return content;}
public void setContent(Integer content) {this.content = content;}
public Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public Integer getNologin() {return nologin;}
public void setNologin(Integer nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
}
JavaCopy
资讯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_zx”)
public class Zx {
//主键
@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 String pic;
//
private String 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 String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}
JavaCopy
基于安卓的移动植物工厂智能监控系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
分类javaBean创建语句如下:

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

//分类
public class Bk extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分类名称
private String bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}
JavaCopy
建议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;}
}
JavaCopy
客户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 address;
//手机
private String phone;
//账户
private Integer account;
//积分
private Integer jf;
//邮箱
private String email;
//头像
private String headPic;
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 getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getAccount() {return account;}
public void setAccount(Integer account) {this.account = account;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public String getEmail() {return email;}
public void setEmail(String email) {this.email = email;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
}
JavaCopy
留言javaBean创建语句如下:

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

//留言
public class Liuyan extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//内容
private String content;
//日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer 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;}
}
JavaCopy
评论javaBean创建语句如下:

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

//评论
public class Pinglun extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//评论信息
private Integer wdxxId;
//评论人
private Integer customerId;
//评论内容
private String content;
//评论日期
private Date insertDate;
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer 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;}
}
JavaCopy
植物监控记录javaBean创建语句如下:

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

//植物监控记录
public class Wdxx extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//记录人
private Integer customerId;
//温度
private Integer title;
//图片
private String pic;
//湿度
private Integer content;
//
private Integer zan;
//记录日期
private Date insertDate;
//高度
private Integer nologin;
//
private Integer bkId;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getTitle() {return title;}
public void setTitle(Integer title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Integer getContent() {return content;}
public void setContent(Integer content) {this.content = content;}
public Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public Integer getNologin() {return nologin;}
public void setNologin(Integer nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
}
JavaCopy
资讯javaBean创建语句如下:

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

//资讯
public class Zx 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 String pic;
//
private String 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 String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

发布了72 篇原创文章 · 获赞 19 · 访问量 9314

猜你喜欢

转载自blog.csdn.net/biyesheji_/article/details/104469328
今日推荐