|
@@ -33,13 +33,15 @@
|
|
|
<result column="SPOT_AREA_NO" jdbcType="VARCHAR" property="spotAreaNo" />
|
|
<result column="SPOT_AREA_NO" jdbcType="VARCHAR" property="spotAreaNo" />
|
|
|
<result column="SPOT_AREA_NAME" jdbcType="VARCHAR" property="spotAreaName" />
|
|
<result column="SPOT_AREA_NAME" jdbcType="VARCHAR" property="spotAreaName" />
|
|
|
<result column="ALLOWED_TARE_WEIGHT" jdbcType="VARCHAR" property="allowedTareWeight" />
|
|
<result column="ALLOWED_TARE_WEIGHT" jdbcType="VARCHAR" property="allowedTareWeight" />
|
|
|
|
|
+ <result column="SCAN_REQUIRE_VALID" jdbcType="VARCHAR" property="scanRequireValid" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="columns">
|
|
<sql id="columns">
|
|
|
BASE_SPOT_NO, BASE_SPOT_NAME, SPOT_TYPE_NO, SPOT_TYPE_NAME, SPOT_STATE_NO, SPOT_STATE_NAME,
|
|
BASE_SPOT_NO, BASE_SPOT_NAME, SPOT_TYPE_NO, SPOT_TYPE_NAME, SPOT_STATE_NO, SPOT_STATE_NAME,
|
|
|
VIDEO_IP, VIDEO_PORT, VIDEO_USER_NAME, VIDEO_PASSWORD, LED_IP, PRINTER_IP, PRINTER_NAME,
|
|
VIDEO_IP, VIDEO_PORT, VIDEO_USER_NAME, VIDEO_PASSWORD, LED_IP, PRINTER_IP, PRINTER_NAME,
|
|
|
COUNT_NUM, USED_NUM, CONTROL_IP, VALID_FLAG, CREATE_MAN_NO, CREATE_MAN_NAME, CREATE_TIME,
|
|
COUNT_NUM, USED_NUM, CONTROL_IP, VALID_FLAG, CREATE_MAN_NO, CREATE_MAN_NAME, CREATE_TIME,
|
|
|
UPDATE_MAN_NO, UPDATE_MAN_NAME, UPDATE_TIME, DELETE_MAN_NO, DELETE_MAN_NAME, DELETE_TIME,
|
|
UPDATE_MAN_NO, UPDATE_MAN_NAME, UPDATE_TIME, DELETE_MAN_NO, DELETE_MAN_NAME, DELETE_TIME,
|
|
|
- FLAT_COMPUTER_IP, MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME, ALLOWED_TARE_WEIGHT
|
|
|
|
|
|
|
+ FLAT_COMPUTER_IP, MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME, ALLOWED_TARE_WEIGHT,
|
|
|
|
|
+ SCAN_REQUIRE_VALID
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="columns_alias">
|
|
<sql id="columns_alias">
|
|
|
t.BASE_SPOT_NO, t.BASE_SPOT_NAME, t.SPOT_TYPE_NO, t.SPOT_TYPE_NAME, t.SPOT_STATE_NO,
|
|
t.BASE_SPOT_NO, t.BASE_SPOT_NAME, t.SPOT_TYPE_NO, t.SPOT_TYPE_NAME, t.SPOT_STATE_NO,
|
|
@@ -47,7 +49,7 @@
|
|
|
t.LED_IP, t.PRINTER_IP, t.PRINTER_NAME, t.COUNT_NUM, t.USED_NUM, t.CONTROL_IP, t.VALID_FLAG,
|
|
t.LED_IP, t.PRINTER_IP, t.PRINTER_NAME, t.COUNT_NUM, t.USED_NUM, t.CONTROL_IP, t.VALID_FLAG,
|
|
|
t.CREATE_MAN_NO, t.CREATE_MAN_NAME, t.CREATE_TIME, t.UPDATE_MAN_NO, t.UPDATE_MAN_NAME,
|
|
t.CREATE_MAN_NO, t.CREATE_MAN_NAME, t.CREATE_TIME, t.UPDATE_MAN_NO, t.UPDATE_MAN_NAME,
|
|
|
t.UPDATE_TIME, t.DELETE_MAN_NO, t.DELETE_MAN_NAME, t.DELETE_TIME, t.FLAT_COMPUTER_IP,
|
|
t.UPDATE_TIME, t.DELETE_MAN_NO, t.DELETE_MAN_NAME, t.DELETE_TIME, t.FLAT_COMPUTER_IP,
|
|
|
- t.MES_SPOT_ID, t.SPOT_AREA_NO, t.SPOT_AREA_NAME, t.ALLOWED_TARE_WEIGHT
|
|
|
|
|
|
|
+ t.MES_SPOT_ID, t.SPOT_AREA_NO, t.SPOT_AREA_NAME, t.ALLOWED_TARE_WEIGHT, t.SCAN_REQUIRE_VALID
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="select">
|
|
<sql id="select">
|
|
|
SELECT <include refid="columns" /> FROM METER_BASE_SPOT_INFO
|
|
SELECT <include refid="columns" /> FROM METER_BASE_SPOT_INFO
|
|
@@ -150,6 +152,9 @@
|
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
|
and ALLOWED_TARE_WEIGHT = #{allowedTareWeight}
|
|
and ALLOWED_TARE_WEIGHT = #{allowedTareWeight}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null and scanRequireValid != ''">
|
|
|
|
|
+ and SCAN_REQUIRE_VALID = #{scanRequireValid}
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="whereLike">
|
|
<sql id="whereLike">
|
|
@@ -247,6 +252,9 @@
|
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
|
and ALLOWED_TARE_WEIGHT LIKE '%${allowedTareWeight}%'
|
|
and ALLOWED_TARE_WEIGHT LIKE '%${allowedTareWeight}%'
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null and scanRequireValid != ''">
|
|
|
|
|
+ and SCAN_REQUIRE_VALID LIKE '%${scanRequireValid}%'
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
@@ -346,6 +354,9 @@
|
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
<if test="allowedTareWeight != null and allowedTareWeight != ''">
|
|
|
or ALLOWED_TARE_WEIGHT = #{allowedTareWeight}
|
|
or ALLOWED_TARE_WEIGHT = #{allowedTareWeight}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null and scanRequireValid != ''">
|
|
|
|
|
+ or SCAN_REQUIRE_VALID = #{scanRequireValid}
|
|
|
|
|
+ </if>
|
|
|
</delete>
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
<insert id="insert" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
|
insert into METER_BASE_SPOT_INFO (BASE_SPOT_NO, BASE_SPOT_NAME, SPOT_TYPE_NO,
|
|
insert into METER_BASE_SPOT_INFO (BASE_SPOT_NO, BASE_SPOT_NAME, SPOT_TYPE_NO,
|
|
@@ -358,7 +369,7 @@
|
|
|
UPDATE_MAN_NAME, UPDATE_TIME, DELETE_MAN_NO,
|
|
UPDATE_MAN_NAME, UPDATE_TIME, DELETE_MAN_NO,
|
|
|
DELETE_MAN_NAME, DELETE_TIME, FLAT_COMPUTER_IP,
|
|
DELETE_MAN_NAME, DELETE_TIME, FLAT_COMPUTER_IP,
|
|
|
MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME,
|
|
MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME,
|
|
|
- ALLOWED_TARE_WEIGHT)
|
|
|
|
|
|
|
+ ALLOWED_TARE_WEIGHT, SCAN_REQUIRE_VALID)
|
|
|
values (#{baseSpotNo,jdbcType=VARCHAR}, #{baseSpotName,jdbcType=VARCHAR}, #{spotTypeNo,jdbcType=VARCHAR},
|
|
values (#{baseSpotNo,jdbcType=VARCHAR}, #{baseSpotName,jdbcType=VARCHAR}, #{spotTypeNo,jdbcType=VARCHAR},
|
|
|
#{spotTypeName,jdbcType=VARCHAR}, #{spotStateNo,jdbcType=VARCHAR}, #{spotStateName,jdbcType=VARCHAR},
|
|
#{spotTypeName,jdbcType=VARCHAR}, #{spotStateNo,jdbcType=VARCHAR}, #{spotStateName,jdbcType=VARCHAR},
|
|
|
#{videoIp,jdbcType=VARCHAR}, #{videoPort,jdbcType=VARCHAR}, #{videoUserName,jdbcType=VARCHAR},
|
|
#{videoIp,jdbcType=VARCHAR}, #{videoPort,jdbcType=VARCHAR}, #{videoUserName,jdbcType=VARCHAR},
|
|
@@ -369,7 +380,7 @@
|
|
|
#{updateManName,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP}, #{deleteManNo,jdbcType=VARCHAR},
|
|
#{updateManName,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP}, #{deleteManNo,jdbcType=VARCHAR},
|
|
|
#{deleteManName,jdbcType=VARCHAR}, #{deleteTime,jdbcType=TIMESTAMP}, #{flatComputerIp,jdbcType=VARCHAR},
|
|
#{deleteManName,jdbcType=VARCHAR}, #{deleteTime,jdbcType=TIMESTAMP}, #{flatComputerIp,jdbcType=VARCHAR},
|
|
|
#{mesSpotId,jdbcType=VARCHAR}, #{spotAreaNo,jdbcType=VARCHAR}, #{spotAreaName,jdbcType=VARCHAR},
|
|
#{mesSpotId,jdbcType=VARCHAR}, #{spotAreaNo,jdbcType=VARCHAR}, #{spotAreaName,jdbcType=VARCHAR},
|
|
|
- #{allowedTareWeight,jdbcType=VARCHAR})
|
|
|
|
|
|
|
+ #{allowedTareWeight,jdbcType=VARCHAR}, #{scanRequireValid,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
<insert id="insertSelective" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
|
insert into METER_BASE_SPOT_INFO
|
|
insert into METER_BASE_SPOT_INFO
|
|
@@ -467,6 +478,9 @@
|
|
|
<if test="allowedTareWeight != null">
|
|
<if test="allowedTareWeight != null">
|
|
|
ALLOWED_TARE_WEIGHT,
|
|
ALLOWED_TARE_WEIGHT,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null">
|
|
|
|
|
+ SCAN_REQUIRE_VALID,
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="baseSpotNo != null">
|
|
<if test="baseSpotNo != null">
|
|
@@ -562,6 +576,9 @@
|
|
|
<if test="allowedTareWeight != null">
|
|
<if test="allowedTareWeight != null">
|
|
|
#{allowedTareWeight,jdbcType=VARCHAR},
|
|
#{allowedTareWeight,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null">
|
|
|
|
|
+ #{scanRequireValid,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
@@ -595,7 +612,8 @@
|
|
|
MES_SPOT_ID = #{mesSpotId,jdbcType=VARCHAR},
|
|
MES_SPOT_ID = #{mesSpotId,jdbcType=VARCHAR},
|
|
|
SPOT_AREA_NO = #{spotAreaNo,jdbcType=VARCHAR},
|
|
SPOT_AREA_NO = #{spotAreaNo,jdbcType=VARCHAR},
|
|
|
SPOT_AREA_NAME = #{spotAreaName,jdbcType=VARCHAR},
|
|
SPOT_AREA_NAME = #{spotAreaName,jdbcType=VARCHAR},
|
|
|
- ALLOWED_TARE_WEIGHT = #{allowedTareWeight,jdbcType=VARCHAR}
|
|
|
|
|
|
|
+ ALLOWED_TARE_WEIGHT = #{allowedTareWeight,jdbcType=VARCHAR},
|
|
|
|
|
+ SCAN_REQUIRE_VALID = #{scanRequireValid,jdbcType=VARCHAR}
|
|
|
where BASE_SPOT_NO = #{baseSpotNo,jdbcType=VARCHAR}
|
|
where BASE_SPOT_NO = #{baseSpotNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.baseinfo.meterbasespotinfo.model.MeterBaseSpotInfo">
|
|
@@ -691,6 +709,9 @@
|
|
|
<if test="allowedTareWeight != null">
|
|
<if test="allowedTareWeight != null">
|
|
|
ALLOWED_TARE_WEIGHT = #{allowedTareWeight,jdbcType=VARCHAR},
|
|
ALLOWED_TARE_WEIGHT = #{allowedTareWeight,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="scanRequireValid != null">
|
|
|
|
|
+ SCAN_REQUIRE_VALID = #{scanRequireValid,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where BASE_SPOT_NO = #{baseSpotNo,jdbcType=VARCHAR}
|
|
where BASE_SPOT_NO = #{baseSpotNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
@@ -719,7 +740,8 @@
|
|
|
UPDATE_TIME, DELETE_MAN_NO, DELETE_MAN_NAME,
|
|
UPDATE_TIME, DELETE_MAN_NO, DELETE_MAN_NAME,
|
|
|
DELETE_TIME, FLAT_COMPUTER_IP,
|
|
DELETE_TIME, FLAT_COMPUTER_IP,
|
|
|
MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME,
|
|
MES_SPOT_ID, SPOT_AREA_NO, SPOT_AREA_NAME,
|
|
|
- ALLOWED_TARE_WEIGHT)
|
|
|
|
|
|
|
+ ALLOWED_TARE_WEIGHT, SCAN_REQUIRE_VALID
|
|
|
|
|
+ )
|
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
|
select
|
|
select
|
|
|
#{item.baseSpotNo,jdbcType=VARCHAR},
|
|
#{item.baseSpotNo,jdbcType=VARCHAR},
|
|
@@ -733,7 +755,8 @@
|
|
|
#{item.updateTime,jdbcType=TIMESTAMP}, #{item.deleteManNo,jdbcType=VARCHAR}, #{item.deleteManName,jdbcType=VARCHAR},
|
|
#{item.updateTime,jdbcType=TIMESTAMP}, #{item.deleteManNo,jdbcType=VARCHAR}, #{item.deleteManName,jdbcType=VARCHAR},
|
|
|
#{item.deleteTime,jdbcType=TIMESTAMP}, #{item.flatComputerIp,jdbcType=VARCHAR},
|
|
#{item.deleteTime,jdbcType=TIMESTAMP}, #{item.flatComputerIp,jdbcType=VARCHAR},
|
|
|
#{item.mesSpotId,jdbcType=VARCHAR}, #{item.spotAreaNo,jdbcType=VARCHAR}, #{item.spotAreaName,jdbcType=VARCHAR},
|
|
#{item.mesSpotId,jdbcType=VARCHAR}, #{item.spotAreaNo,jdbcType=VARCHAR}, #{item.spotAreaName,jdbcType=VARCHAR},
|
|
|
- #{item.allowedTareWeight,jdbcType=VARCHAR} from dual
|
|
|
|
|
|
|
+ #{item.allowedTareWeight,jdbcType=VARCHAR}, #{item.scanRequireValid,jdbcType=VARCHAR}
|
|
|
|
|
+ from dual
|
|
|
</foreach> )
|
|
</foreach> )
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
@@ -863,6 +886,10 @@
|
|
|
<foreach close="end" collection="list" index="index" item="item" open="case BASE_SPOT_NO" separator=" ">
|
|
<foreach close="end" collection="list" index="index" item="item" open="case BASE_SPOT_NO" separator=" ">
|
|
|
when #{item.baseSpotNo,jdbcType=VARCHAR} then #{item.allowedTareWeight,jdbcType=VARCHAR}
|
|
when #{item.baseSpotNo,jdbcType=VARCHAR} then #{item.allowedTareWeight,jdbcType=VARCHAR}
|
|
|
</foreach>
|
|
</foreach>
|
|
|
|
|
+ ,SCAN_REQUIRE_VALID=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case BASE_SPOT_NO" separator=" ">
|
|
|
|
|
+ when #{item.baseSpotNo,jdbcType=VARCHAR} then #{item.scanRequireValid,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
where BASE_SPOT_NO in
|
|
where BASE_SPOT_NO in
|
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
|
#{item.baseSpotNo,jdbcType=VARCHAR}
|
|
#{item.baseSpotNo,jdbcType=VARCHAR}
|
|
@@ -877,8 +904,6 @@
|
|
|
</delete>
|
|
</delete>
|
|
|
<!-- 友情提示!!!-->
|
|
<!-- 友情提示!!!-->
|
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
|
- <!-- 友情提示!!!-->
|
|
|
|
|
- <!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
|
|
|
<sql id="whereOr">
|
|
<sql id="whereOr">
|
|
|
<where>
|
|
<where>
|
|
|
<if test="baseSpotNo != null and baseSpotNo != ''">
|
|
<if test="baseSpotNo != null and baseSpotNo != ''">
|
|
@@ -984,25 +1009,25 @@
|
|
|
<select id="DynamicAll" parameterType="java.util.HashMap" resultMap="BaseResultMap">
|
|
<select id="DynamicAll" parameterType="java.util.HashMap" resultMap="BaseResultMap">
|
|
|
<include refid="select"/>
|
|
<include refid="select"/>
|
|
|
where 1 = 1
|
|
where 1 = 1
|
|
|
- and spot_type_no in ('001019004', '001019002')
|
|
|
|
|
- <if test="baseSpotNo != null and baseSpotNo != ''">
|
|
|
|
|
- and BASE_SPOT_NO = #{baseSpotNo}
|
|
|
|
|
- </if>
|
|
|
|
|
- <if test="baseSpotName != null and baseSpotName != ''">
|
|
|
|
|
- and BASE_SPOT_NAME = #{baseSpotName}
|
|
|
|
|
- </if>
|
|
|
|
|
- <if test="spotTypeNo != null and spotTypeNo != ''">
|
|
|
|
|
- and SPOT_TYPE_NO = #{spotTypeNo}
|
|
|
|
|
- </if>
|
|
|
|
|
- <if test="spotTypeName != null and spotTypeName != ''">
|
|
|
|
|
- and SPOT_TYPE_NAME = #{spotTypeName}
|
|
|
|
|
- </if>
|
|
|
|
|
- <if test="spotStateNo != null and spotStateNo != ''">
|
|
|
|
|
- and SPOT_STATE_NO = #{spotStateNo}
|
|
|
|
|
- </if>
|
|
|
|
|
- <if test="spotStateName != null and spotStateName != ''">
|
|
|
|
|
- and SPOT_STATE_NAME = #{spotStateName}
|
|
|
|
|
- </if>
|
|
|
|
|
|
|
+ and spot_type_no in ('001019004', '001019002')
|
|
|
|
|
+ <if test="baseSpotNo != null and baseSpotNo != ''">
|
|
|
|
|
+ and BASE_SPOT_NO = #{baseSpotNo}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="baseSpotName != null and baseSpotName != ''">
|
|
|
|
|
+ and BASE_SPOT_NAME = #{baseSpotName}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="spotTypeNo != null and spotTypeNo != ''">
|
|
|
|
|
+ and SPOT_TYPE_NO = #{spotTypeNo}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="spotTypeName != null and spotTypeName != ''">
|
|
|
|
|
+ and SPOT_TYPE_NAME = #{spotTypeName}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="spotStateNo != null and spotStateNo != ''">
|
|
|
|
|
+ and SPOT_STATE_NO = #{spotStateNo}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="spotStateName != null and spotStateName != ''">
|
|
|
|
|
+ and SPOT_STATE_NAME = #{spotStateName}
|
|
|
|
|
+ </if>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
|
<select id="selectcorrelation" resultMap="BaseResultMap">
|
|
<select id="selectcorrelation" resultMap="BaseResultMap">
|
|
@@ -1031,4 +1056,5 @@
|
|
|
select * from meter_base_spot_info
|
|
select * from meter_base_spot_info
|
|
|
where spot_type_no in ('001019003','001019005')
|
|
where spot_type_no in ('001019003','001019005')
|
|
|
</select>
|
|
</select>
|
|
|
|
|
+
|
|
|
</mapper>
|
|
</mapper>
|