Просмотр исходного кода

[智能电表][修改][电表关联等mapper.xml]

release_toaliyun_real
gongbiao 7 лет назад
Родитель
Сommit
94ff4c16cb
4 измененных файлов: 196 добавлений и 0 удалений
  1. +48
    -0
      mallinkService/src/main/resources/mapper/KwBoxCmdHistoryMapper.xml
  2. +50
    -0
      mallinkService/src/main/resources/mapper/KwBoxMeterMapper.xml
  3. +50
    -0
      mallinkService/src/main/resources/mapper/KwMerchantMeterMapper.xml
  4. +48
    -0
      mallinkService/src/main/resources/mapper/KwMeterDataMapper.xml

+ 48
- 0
mallinkService/src/main/resources/mapper/KwBoxCmdHistoryMapper.xml Просмотреть файл

@@ -0,0 +1,48 @@
<?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.iformall.mapper.KwBoxCmdHistoryMapper">
<resultMap id="BaseResultMap" type="com.iformall.domain.po.KwBoxCmdHistory">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
<result column="imei" jdbcType="VARCHAR" property="imei"/>
<result column="iccid" jdbcType="VARCHAR" property="iccid"/>
<result column="cmd" jdbcType="VARCHAR" property="cmd"/>
<result column="info" jdbcType="VARCHAR" property="info"/>
<result column="device_time" jdbcType="TIMESTAMP" property="deviceTime"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="allColumns">
`id`,`tenant_id`,`imei`,`iccid`,`cmd`,`info`,`device_time`,`create_time`,`update_time`
</sql>
<sql id="dynamicWhereConditions">
where 1 = 1
<if test=" null != id ">
and `id` = #{id}
</if>
<if test=" null != tenantId ">
and `tenant_id` = #{tenantId}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
#{idItem}
</foreach>
</if>
<if test=" null != sortColumns">order by ${sortColumns}</if>
</sql>
<select id="findList" parameterType="com.iformall.domain.po.KwMeters" resultMap="BaseResultMap">
select
<include refid="allColumns"/>
from kw_box_cmd_history
<include refid="dynamicWhereConditions"/>
</select>


</mapper>

+ 50
- 0
mallinkService/src/main/resources/mapper/KwBoxMeterMapper.xml Просмотреть файл

@@ -0,0 +1,50 @@
<?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.iformall.mapper.KwBoxMeterMapper">
<resultMap id="BaseResultMap" type="com.iformall.domain.po.KwBoxMeter">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
<result column="meter_id" jdbcType="BIGINT" property="meterId"/>
<result column="box_id" jdbcType="BIGINT" property="boxId"/>
<result column="status" jdbcType="INTEGER" property="status"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="allColumns">
`id`,`tenant_id`,`meter_id`,`box_id`,`status`,`create_time`,`update_time`
</sql>
<sql id="dynamicWhereConditions">
where 1 = 1
<if test=" null != id ">
and `id` = #{id}
</if>
<if test=" null != tenantId ">
and `tenant_id` = #{tenantId}
</if>
<if test=" null != status ">
and `status` = #{status}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
#{idItem}
</foreach>
</if>
<if test=" null != sortColumns">order by ${sortColumns}</if>
</sql>
<select id="findList" parameterType="com.iformall.domain.po.KwMeters" resultMap="BaseResultMap">
select
<include refid="allColumns"/>
from kw_box_meter
<include refid="dynamicWhereConditions"/>
</select>


</mapper>

+ 50
- 0
mallinkService/src/main/resources/mapper/KwMerchantMeterMapper.xml Просмотреть файл

@@ -0,0 +1,50 @@
<?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.iformall.mapper.KwMerchantMeterMapper">
<resultMap id="BaseResultMap" type="com.iformall.domain.po.KwMerchantMeter">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
<result column="meter_id" jdbcType="BIGINT" property="meterId"/>
<result column="merchant_id" jdbcType="BIGINT" property="merchantId"/>
<result column="status" jdbcType="INTEGER" property="status"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="allColumns">
`id`,`tenant_id`,`meter_id`,`merchant_id`,`status`,`create_time`,`update_time`
</sql>
<sql id="dynamicWhereConditions">
where 1 = 1
<if test=" null != id ">
and `id` = #{id}
</if>
<if test=" null != tenantId ">
and `tenant_id` = #{tenantId}
</if>
<if test=" null != status ">
and `status` = #{status}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
#{idItem}
</foreach>
</if>
<if test=" null != sortColumns">order by ${sortColumns}</if>
</sql>
<select id="findList" parameterType="com.iformall.domain.po.KwMeters" resultMap="BaseResultMap">
select
<include refid="allColumns"/>
from kw_box_meter
<include refid="dynamicWhereConditions"/>
</select>


</mapper>

+ 48
- 0
mallinkService/src/main/resources/mapper/KwMeterDataMapper.xml Просмотреть файл

@@ -0,0 +1,48 @@
<?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.iformall.mapper.KwMeterDataMapper">
<resultMap id="BaseResultMap" type="com.iformall.domain.po.KwMeterData">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
<result column="meter_id" jdbcType="BIGINT" property="meteId"/>
<result column="box_id" jdbcType="BIGINT" property="boxId"/>
<result column="address" jdbcType="VARCHAR" property="address"/>
<result column="result" jdbcType="VARCHAR" property="result"/>
<result column="device_time" jdbcType="TIMESTAMP" property="deviceTime"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="allColumns">
`id`,`tenant_id`,`meter_id`,`box_id`,`address`,`result`,`device_time`,`create_time`,`update_time`
</sql>
<sql id="dynamicWhereConditions">
where 1 = 1
<if test=" null != id ">
and `id` = #{id}
</if>
<if test=" null != tenantId ">
and `tenant_id` = #{tenantId}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
#{idItem}
</foreach>
</if>
<if test=" null != sortColumns">order by ${sortColumns}</if>
</sql>
<select id="findList" parameterType="com.iformall.domain.po.KwMeters" resultMap="BaseResultMap">
select
<include refid="allColumns"/>
from kw_box_cmd_history
<include refid="dynamicWhereConditions"/>
</select>


</mapper>

Загрузка…
Отмена
Сохранить