添加pq同步设备状态批处理
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.njcn.influx.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.njcn.influx.bo.po.PqDeviceMysql;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2024/5/13 11:37【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
public interface PqDeviceMysqlMapper extends BaseMapper<PqDeviceMysql> {
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.njcn.influx.mapper.PqDeviceMysqlMapper">
|
||||
<resultMap id="BaseResultMap" type="com.njcn.influx.bo.po.PqDeviceMysql">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table pq_device-->
|
||||
<id column="Id" jdbcType="CHAR" property="id" />
|
||||
<result column="Dev_Model" jdbcType="BIT" property="devModel" />
|
||||
<result column="Dev_Data_Type" jdbcType="BIT" property="devDataType" />
|
||||
<result column="Run_Flag" jdbcType="BIT" property="runFlag" />
|
||||
<result column="Com_Flag" jdbcType="BIT" property="comFlag" />
|
||||
<result column="Manufacturer" jdbcType="CHAR" property="manufacturer" />
|
||||
<result column="Check_Flag" jdbcType="BIT" property="checkFlag" />
|
||||
<result column="Front_Type" jdbcType="CHAR" property="frontType" />
|
||||
<result column="Dev_Type" jdbcType="CHAR" property="devType" />
|
||||
<result column="IP" jdbcType="CHAR" property="ip" />
|
||||
<result column="Call_Flag" jdbcType="BIT" property="callFlag" />
|
||||
<result column="Port" jdbcType="INTEGER" property="port" />
|
||||
<result column="Series" jdbcType="VARCHAR" property="series" />
|
||||
<result column="Dev_Key" jdbcType="VARCHAR" property="devKey" />
|
||||
<result column="Node_Id" jdbcType="CHAR" property="nodeId" />
|
||||
<result column="Login_Time" jdbcType="DATE" property="loginTime" />
|
||||
<result column="Update_Time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="This_Time_Check" jdbcType="DATE" property="thisTimeCheck" />
|
||||
<result column="Next_Time_Check" jdbcType="DATE" property="nextTimeCheck" />
|
||||
<result column="Electroplate" jdbcType="BIT" property="electroplate" />
|
||||
<result column="On_Time" jdbcType="BIT" property="onTime" />
|
||||
<result column="Contract" jdbcType="VARCHAR" property="contract" />
|
||||
<result column="Sim" jdbcType="VARCHAR" property="sim" />
|
||||
<result column="Dev_Location" jdbcType="VARCHAR" property="devLocation" />
|
||||
<result column="Dev_No" jdbcType="VARCHAR" property="devNo" />
|
||||
<result column="Dev_Series" jdbcType="VARCHAR" property="devSeries" />
|
||||
<result column="Is_Alarm" jdbcType="BIT" property="isAlarm" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
Id, Dev_Model, Dev_Data_Type, Run_Flag, Com_Flag, Manufacturer, Check_Flag, Front_Type,
|
||||
Dev_Type, IP, Call_Flag, Port, Series, Dev_Key, Node_Id, Login_Time, Update_Time,
|
||||
This_Time_Check, Next_Time_Check, Electroplate, On_Time, Contract, Sim, Dev_Location,
|
||||
Dev_No, Dev_Series, Is_Alarm
|
||||
</sql>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user