feat: 推送人脸和车辆信息完结版
This commit is contained in:
parent
983ca6c06b
commit
cfb0534562
|
|
@ -0,0 +1,108 @@
|
|||
package com.bootdo.datasend.dianxin.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 高抛记录表(BaseHighThrowRecord)Domain
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-11-18 09:34:36
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@TableName(value = "base_high_throw_record")
|
||||
public class BaseHighThrowRecord {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 设备名称
|
||||
*/
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 设备编码
|
||||
*/
|
||||
private String deviceCode;
|
||||
|
||||
/**
|
||||
* 通道国标编码
|
||||
*/
|
||||
private String gbsChannelNo;
|
||||
|
||||
/**
|
||||
* NVR设备编号
|
||||
*/
|
||||
private String serial;
|
||||
|
||||
/**
|
||||
* 通道号
|
||||
*/
|
||||
private Integer channelNo;
|
||||
|
||||
/**
|
||||
* 监控大类
|
||||
*/
|
||||
private Integer parentMonitoringType;
|
||||
|
||||
/**
|
||||
* 设备类型
|
||||
*/
|
||||
private Integer deviceType;
|
||||
|
||||
/**
|
||||
* 设备能力集
|
||||
*/
|
||||
private String structuredCameraType;
|
||||
|
||||
/**
|
||||
* 安装位置
|
||||
*/
|
||||
private String deviceAddress;
|
||||
|
||||
/**
|
||||
* 设备方位
|
||||
*/
|
||||
private Integer orientation;
|
||||
|
||||
/**
|
||||
* 设备ip
|
||||
*/
|
||||
private String deviceIp;
|
||||
|
||||
/**
|
||||
* 多维设备SN
|
||||
*/
|
||||
private String geminiSn;
|
||||
|
||||
/**
|
||||
* 场所编码
|
||||
*/
|
||||
private String placeCode;
|
||||
|
||||
/**
|
||||
* 场所名称
|
||||
*/
|
||||
private String placeName;
|
||||
|
||||
/**
|
||||
* 高抛图路径
|
||||
*/
|
||||
private String highThrowImgurl;
|
||||
|
||||
/**
|
||||
* 抓拍时间
|
||||
*/
|
||||
private Long passTime;
|
||||
|
||||
private Integer isSend;
|
||||
|
||||
}
|
||||
|
|
@ -99,6 +99,7 @@ public class StandardTask {
|
|||
|
||||
List<BaseUserRecord> lists = userRecordService.list(new QueryWrapper<BaseUserRecord>()
|
||||
.eq("is_send", "0")
|
||||
.ne("pass_time", 0L)
|
||||
.last("limit 100")
|
||||
.orderByAsc("id")
|
||||
);
|
||||
|
|
|
|||
|
|
@ -2,8 +2,14 @@ spring:
|
|||
datasource: #数据库
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
username: root
|
||||
# 智慧园区
|
||||
password: 'puxing@18912915666'
|
||||
# 尚景湾
|
||||
# password: '1qaz!QAZ'
|
||||
# 智慧园区
|
||||
url: jdbc:mysql://110.1.53.162:55306/multidimensional_box?useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true&serverTimezone=GMT
|
||||
# 尚景湾
|
||||
# url: jdbc:mysql://221.229.107.118:30519/multidimensional_box?useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true&serverTimezone=GMT
|
||||
# url: jdbc:mysql://127.0.0.1:55306/multidimensional_box?useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true&serverTimezone=GMT
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
initialSize: 5 # 配置初始化大小、最小、最大
|
||||
|
|
|
|||
Loading…
Reference in New Issue