springboot猪场管理系统-奶牛场管理系统-鸡舍管理系统-养殖场气体检测系统网站springMVC+mysql+javaweb

  1. 管理人员可以清楚地通过控制中心的终端设备观察到每一个气体传感器的位置情况和工作情况。(比如有20个牛棚,管理员可以选择查看不同牛棚的气体监测信息,气体的信息包括3钟气体 H2S、NH3和CH4有毒有害气体,主要显示出这先气体的浓度随时间的变化当气体的浓度大于一定程度时会产生预警信息。)
  2. 管理员可以对图形化参数的设定.如折线图中的时间单位。
  3. 用折线图显示相同气体的实时浓度变化情况,横坐标为时间,纵坐标为浓度。
  4. 管理员可以查看用扇形图显示不同气体的当时浓度的情况.
  5. 管理员可以查看不同牛棚的折现图和扇形图.
  6. 管理员可以查询过去时间任何时间段的任何牛棚浓度信息.
-- ----------------------------
-- Table structure for t_nongdu
-- ----------------------------
DROP TABLE IF EXISTS `t_nongdu`;
CREATE TABLE `t_nongdu` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tantou_id` int(11) DEFAULT NULL,
  `nongdu` double(11,2) DEFAULT NULL,
  `riqi` longtext,
  `del` longtext,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of t_nongdu
-- ----------------------------
INSERT INTO `t_nongdu` VALUES ('4', '1', '33.00', '2020-05-17 20:08:47', 'no                                                ');
INSERT INTO `t_nongdu` VALUES ('5', '2', '33.00', '2020-05-16 20:08:47', 'no                                                ');
INSERT INTO `t_nongdu` VALUES ('6', '3', '44.00', '2020-04-15 20:08:47', 'no                                                ');
INSERT INTO `t_nongdu` VALUES ('7', '4', '100.00', '2020-05-14 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('8', '5', '80.00', '2020-05-13 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('9', '6', '100.00', '2020-05-12 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('10', '7', '90.00', '2020-05-11 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('11', '1', '50.00', '2020-05-10 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('12', '2', '70.00', '2020-05-09 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('13', '3', '90.00', '2020-05-08 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('14', '4', '85.00', '2020-05-07 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('15', '5', '43.00', '2020-05-06 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('16', '6', '54.00', '2020-05-05 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('17', '7', '66.00', '2020-05-04 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('18', '1', '87.00', '2020-05-03 20:08:47', 'no');
INSERT INTO `t_nongdu` VALUES ('27', '1', '30.63', '2020-05-14 19:15:28', 'no');
INSERT INTO `t_nongdu` VALUES ('28', '1', '66.33', '2020-05-19 23:22:32', 'no');

-- ----------------------------
-- Table structure for t_tantou
-- ----------------------------
DROP TABLE IF EXISTS `t_tantou`;
CREATE TABLE `t_tantou` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` longtext,
  `jieshao` longtext,
  `del` longtext,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of t_tantou
-- ----------------------------
INSERT INTO `t_tantou` VALUES ('1', '牛棚一A-2', '牛棚一', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('2', '牛棚一A-3', '牛棚一', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('3', '牛棚一A-4', '牛棚一', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('4', '牛棚一A-5', '牛棚一', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('5', '牛棚一A-6', '牛棚一', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('6', '牛棚二A-1', '牛棚二', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('7', '牛棚二A-1', '牛棚二', 'no                                                ');
INSERT INTO `t_tantou` VALUES ('8', '牛棚二A-1', '牛棚二', 'no');
INSERT INTO `t_tantou` VALUES ('9', '1', '请1', 'no');
INSERT INTO `t_tantou` VALUES ('10', '2', '2请输入内容', 'no');

猜你喜欢

转载自blog.csdn.net/a779289061/article/details/113782286
今日推荐