| File was renamed from blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/nettyUdpServer/entity/BladeAnimalHeat.java |
| | |
| | | package org.springblade.jfpt.nettyUdpServer.entity; |
| | | package org.springblade.jfpt.animalheat.entity; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id;// bigint(20) NOT NULL COMMENT '主键', |
| | | |
| | | //private Integer method;// int(1) NOT NULL COMMENT '方法名: 0 表示 infrared_aiom_picture 图片数据, 1 表示 engine_echo 心跳包 ', |
| | | private Integer method;// int(1) NOT NULL COMMENT '方法名: 0 表示 infrared_aiom_picture 图片数据, 1 表示 engine_echo 心跳包 ', |
| | | |
| | | private String ip;// varchar(63) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备IP地址', |
| | | |
| | |
| | | @TableField("temp_red") |
| | | private Float tempRed;// float(4,2) DEFAULT NULL COMMENT '当前人员的温度', |
| | | |
| | | @TableField("person_rect") |
| | | private String[] personRect;// varchar(63) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '人脸位置二位数组,[left,top,right,bottom]', |
| | | @TableField(value = "person_rect") |
| | | private String personRect;// varchar(63) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '人脸位置二位数组,[left,top,right,bottom]', |
| | | |
| | | @TableField("person_rect_red") |
| | | private Integer[] personRectRed;// varchar(63) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '红外人脸位置二位数组,[left,top,right,bottom]', |
| | | private String personRectRed;// varchar(63) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '红外人脸位置二位数组,[left,top,right,bottom]', |
| | | |
| | | @TableField("create_time") |
| | | private Date createTime;// datetime DEFAULT NULL COMMENT '创建时间', |
| | | |
| | | private Integer status;//状态 1为高温 0为正常 ,以37度为标准,大于37度为高温 |
| | | |
| | | } |