2025年09月10日 1.0.1 修改通过堡垒机转发相关请求
parent
9a35c664f6
commit
d6ab1278da
@ -0,0 +1,97 @@
|
||||
package com.nmggs.query.entity.fx;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2025年09月16日
|
||||
* @description: 设备使用频次表
|
||||
*/
|
||||
@Data
|
||||
@TableName("zdyh_use_info")
|
||||
public class UseInfo {
|
||||
|
||||
/**
|
||||
* 统计日期
|
||||
*/
|
||||
@TableField("classdate")
|
||||
@JSONField(name = "classdate")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date classdate;
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
*/
|
||||
@TableField("equipmentid")
|
||||
@JSONField(name = "equipmentid")
|
||||
private Integer equipmentid;
|
||||
|
||||
/**
|
||||
* 所属组织
|
||||
*/
|
||||
@TableField("equipmentname")
|
||||
@JSONField(name = "equipmentname")
|
||||
private String equipmentname;
|
||||
|
||||
/**
|
||||
* 部门编号
|
||||
*/
|
||||
@TableField("departmentno")
|
||||
@JSONField(name = "departmentno")
|
||||
private Integer departmentno;
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
@TableField("departmentname")
|
||||
@JSONField(name = "departmentname")
|
||||
private String departmentname;
|
||||
|
||||
/**
|
||||
* 设备使用时长
|
||||
*/
|
||||
@TableField("usehour")
|
||||
@JSONField(name = "usehour")
|
||||
private Double usehour;
|
||||
|
||||
/**
|
||||
* 筛查过车数量
|
||||
*/
|
||||
@TableField("passcount")
|
||||
@JSONField(name = "passcount")
|
||||
private Integer passcount;
|
||||
|
||||
/**
|
||||
* 筛查货车数量
|
||||
*/
|
||||
@TableField("truckpasscount")
|
||||
@JSONField(name = "truckpasscount")
|
||||
private Integer truckpasscount;
|
||||
|
||||
/**
|
||||
* 筛查危货车数量
|
||||
*/
|
||||
@TableField("dangerpasscount")
|
||||
@JSONField(name = "dangerpasscount")
|
||||
private Integer dangerpasscount;
|
||||
|
||||
/**
|
||||
* 筛查客车数量
|
||||
*/
|
||||
@TableField("carpasscount")
|
||||
@JSONField(name = "carpasscount")
|
||||
private Integer carpasscount;
|
||||
/**
|
||||
* 数据更新时间
|
||||
*/
|
||||
@TableField("updatetime")
|
||||
@JSONField(name = "updatetime")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private Date updatetime;
|
||||
}
|
||||
@ -0,0 +1,216 @@
|
||||
package com.nmggs.query.entity.fx;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2025年09月16日
|
||||
* @description: 交通违法信息表
|
||||
*/
|
||||
@Data
|
||||
@TableName("zdyh_warning_info")
|
||||
public class WarningInfo {
|
||||
|
||||
/**
|
||||
* 统计日期
|
||||
*/
|
||||
@TableField("classdate")
|
||||
@JSONField(name = "classdate")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date classdate;
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
*/
|
||||
@TableField("equipmentid")
|
||||
@JSONField(name = "equipmentid")
|
||||
private Integer equipmentid;
|
||||
|
||||
/**
|
||||
* 所属组织
|
||||
*/
|
||||
@TableField("equipmentname")
|
||||
@JSONField(name = "equipmentname")
|
||||
private String equipmentname;
|
||||
|
||||
/**
|
||||
* 部门编号
|
||||
*/
|
||||
@TableField("departmentno")
|
||||
@JSONField(name = "departmentno")
|
||||
private Integer departmentno;
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
@TableField("departmentname")
|
||||
@JSONField(name = "departmentname")
|
||||
private String departmentname;
|
||||
|
||||
/**
|
||||
* 过车数量
|
||||
*/
|
||||
@TableField("passcount")
|
||||
@JSONField(name = "passcount")
|
||||
private Integer passcount;
|
||||
|
||||
/**
|
||||
* 预警数量
|
||||
*/
|
||||
@TableField("warncount")
|
||||
@JSONField(name = "warncount")
|
||||
private Integer warncount;
|
||||
|
||||
/**
|
||||
* 疲劳驾驶违法数量
|
||||
*/
|
||||
@TableField("fatiguecount")
|
||||
@JSONField(name = "fatiguecount")
|
||||
private Integer fatiguecount;
|
||||
|
||||
/**
|
||||
* 疲劳货车数量
|
||||
*/
|
||||
@TableField("truckfatiguecount")
|
||||
@JSONField(name = "truckfatiguecount")
|
||||
private Integer truckfatiguecount;
|
||||
|
||||
/**
|
||||
* 疲劳危货车数量
|
||||
*/
|
||||
@TableField("dangerfatiguecount")
|
||||
@JSONField(name = "dangerfatiguecount")
|
||||
private Integer dangerfatiguecount;
|
||||
|
||||
/**
|
||||
* 疲劳客车数量
|
||||
*/
|
||||
@TableField("carfatiguecount")
|
||||
@JSONField(name = "carfatiguecount")
|
||||
private Integer carfatiguecount;
|
||||
|
||||
/**
|
||||
* 严重疲劳驾驶数量
|
||||
*/
|
||||
@TableField("severefatiguecount")
|
||||
@JSONField(name = "severefatiguecount")
|
||||
private Integer severefatiguecount;
|
||||
|
||||
/**
|
||||
* 严重疲劳货车数量
|
||||
*/
|
||||
@TableField("truckseverefatiguecount")
|
||||
@JSONField(name = "truckseverefatiguecount")
|
||||
private Integer truckseverefatiguecount;
|
||||
|
||||
/**
|
||||
* 严重疲劳危货车数量
|
||||
*/
|
||||
@TableField("dangerseverefatiguecount")
|
||||
@JSONField(name = "dangerseverefatiguecount")
|
||||
private Integer dangerseverefatiguecount;
|
||||
|
||||
/**
|
||||
* 严重疲劳客车数量
|
||||
*/
|
||||
@TableField("carseverefatiguecount")
|
||||
@JSONField(name = "carseverefatiguecount")
|
||||
private Integer carseverefatiguecount;
|
||||
|
||||
/**
|
||||
* 超速驾驶违法数量
|
||||
*/
|
||||
@TableField("speedcount")
|
||||
@JSONField(name = "speedcount")
|
||||
private Integer speedcount;
|
||||
|
||||
/**
|
||||
* 超速货车数量
|
||||
*/
|
||||
@TableField("truckspeedcount")
|
||||
@JSONField(name = "truckspeedcount")
|
||||
private Integer truckspeedcount;
|
||||
|
||||
/**
|
||||
* 超速危货车数量
|
||||
*/
|
||||
@TableField("dangerspeedcount")
|
||||
@JSONField(name = "dangerspeedcount")
|
||||
private Integer dangerspeedcount;
|
||||
|
||||
/**
|
||||
* 超速客车数量
|
||||
*/
|
||||
@TableField("carspeedcount")
|
||||
@JSONField(name = "carspeedcount")
|
||||
private Integer carspeedcount;
|
||||
|
||||
/**
|
||||
* 安全设施不全违法数量
|
||||
*/
|
||||
@TableField("facilitycount")
|
||||
@JSONField(name = "facilitycount")
|
||||
private Integer facilitycount;
|
||||
|
||||
/**
|
||||
* 安全设施不全货车数量
|
||||
*/
|
||||
@TableField("truckfacilitycount")
|
||||
@JSONField(name = "truckfacilitycount")
|
||||
private Integer truckfacilitycount;
|
||||
|
||||
/**
|
||||
* 安全设施不全危货车数量
|
||||
*/
|
||||
@TableField("dangerfacilitycount")
|
||||
@JSONField(name = "dangerfacilitycount")
|
||||
private Integer dangerfacilitycount;
|
||||
|
||||
/**
|
||||
* 安全设施不全客车数量
|
||||
*/
|
||||
@TableField("carfacilitycount")
|
||||
@JSONField(name = "carfacilitycount")
|
||||
private Integer carfacilitycount;
|
||||
|
||||
/**
|
||||
* 逃费违法数量
|
||||
*/
|
||||
@TableField("feeevasioncount")
|
||||
@JSONField(name = "feeevasioncount")
|
||||
private Integer feevasioncount;
|
||||
|
||||
/**
|
||||
* 逃费货车数量
|
||||
*/
|
||||
@TableField("truckfeeevasioncount")
|
||||
@JSONField(name = "truckfeeevasioncount")
|
||||
private Integer truckfeeevasioncount;
|
||||
|
||||
/**
|
||||
* 逃费危货车数量
|
||||
*/
|
||||
@TableField("dangerfeeevasioncount")
|
||||
@JSONField(name = "dangerfeeevasioncount")
|
||||
private Integer dangerfeeevasioncount;
|
||||
|
||||
/**
|
||||
* 逃费客车数量
|
||||
*/
|
||||
@TableField("carfeeevasioncount")
|
||||
@JSONField(name = "carfeeevasioncount")
|
||||
private Integer carfeeevasioncount;
|
||||
/**
|
||||
* 数据更新时间
|
||||
*/
|
||||
@TableField("updatetime")
|
||||
@JSONField(name = "updatetime")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private Date updatetime;
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package com.nmggs.query.mapper.fx;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.nmggs.query.entity.fx.UseInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2025年09月16日 15:25
|
||||
* @description:
|
||||
*/
|
||||
@Mapper
|
||||
@DS("fx")
|
||||
public interface UseInfoMapper extends BaseMapper<UseInfo> {
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package com.nmggs.query.mapper.fx;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.nmggs.query.entity.fx.WarningInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2025年09月16日 15:38
|
||||
* @description:
|
||||
*/
|
||||
@Mapper
|
||||
@DS("fx")
|
||||
public interface WarningInfoMapper extends BaseMapper<WarningInfo> {
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Created-By: IntelliJ IDEA
|
||||
Built-By: shuguang
|
||||
Build-Jdk: Oracle OpenJDK version 1.8.0_181
|
||||
Implementation-Title: GetDataInterface
|
||||
Implementation-Version: 0.0.1-SNAPSHOT
|
||||
Implementation-Vendor-Id: com.nmggs
|
||||
Main-Class: ${start-class}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue