|
@@ -57,6 +57,10 @@
|
|
|
<result column="FRONT_INFRARED_RAY_STATE" jdbcType="VARCHAR" property="frontInfraredRayState" />
|
|
<result column="FRONT_INFRARED_RAY_STATE" jdbcType="VARCHAR" property="frontInfraredRayState" />
|
|
|
<result column="REAR_INFRARED_RAY_STATE" jdbcType="VARCHAR" property="rearInfraredRayState" />
|
|
<result column="REAR_INFRARED_RAY_STATE" jdbcType="VARCHAR" property="rearInfraredRayState" />
|
|
|
<result column="RFID_STATE" jdbcType="VARCHAR" property="rfidState" />
|
|
<result column="RFID_STATE" jdbcType="VARCHAR" property="rfidState" />
|
|
|
|
|
+ <result column="ZERO_STATE" jdbcType="VARCHAR" property="zeroState" />
|
|
|
|
|
+ <result column="AUTOSCALE_IP" jdbcType="VARCHAR" property="autoscaleIp" />
|
|
|
|
|
+ <result column="PLC_IP" jdbcType="VARCHAR" property="plcIp" />
|
|
|
|
|
+ <result column="DVR_IP" jdbcType="VARCHAR" property="dvrIp" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="columns">
|
|
<sql id="columns">
|
|
|
SCALE_POINT_NO, SCALE_POINT_NAME, BASE_SPOT_NO, BASE_SPOT_NAME, WEIGH_INSTRUMENT_MODEL,
|
|
SCALE_POINT_NO, SCALE_POINT_NAME, BASE_SPOT_NO, BASE_SPOT_NAME, WEIGH_INSTRUMENT_MODEL,
|
|
@@ -68,7 +72,7 @@
|
|
|
DVR_STATE, MOXA_STATE, PLC_STATE, LEFT_INFRARED_RAY_STATE, RIGHT_INFRARED_RAY_STATE,
|
|
DVR_STATE, MOXA_STATE, PLC_STATE, LEFT_INFRARED_RAY_STATE, RIGHT_INFRARED_RAY_STATE,
|
|
|
AMPLIFIER_STATE, LAMP_STATE, ENTRUST_STATE, VERSION, SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
AMPLIFIER_STATE, LAMP_STATE, ENTRUST_STATE, VERSION, SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE, FRONT_INFRARED_RAY_STATE, REAR_INFRARED_RAY_STATE,
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE, FRONT_INFRARED_RAY_STATE, REAR_INFRARED_RAY_STATE,
|
|
|
- RFID_STATE
|
|
|
|
|
|
|
+ RFID_STATE, ZERO_STATE, AUTOSCALE_IP, PLC_IP, DVR_IP
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="columns_alias">
|
|
<sql id="columns_alias">
|
|
|
t.SCALE_POINT_NO, t.SCALE_POINT_NAME, t.BASE_SPOT_NO, t.BASE_SPOT_NAME, t.WEIGH_INSTRUMENT_MODEL,
|
|
t.SCALE_POINT_NO, t.SCALE_POINT_NAME, t.BASE_SPOT_NO, t.BASE_SPOT_NAME, t.WEIGH_INSTRUMENT_MODEL,
|
|
@@ -81,7 +85,7 @@
|
|
|
t.PLC_STATE, t.LEFT_INFRARED_RAY_STATE, t.RIGHT_INFRARED_RAY_STATE, t.AMPLIFIER_STATE,
|
|
t.PLC_STATE, t.LEFT_INFRARED_RAY_STATE, t.RIGHT_INFRARED_RAY_STATE, t.AMPLIFIER_STATE,
|
|
|
t.LAMP_STATE, t.ENTRUST_STATE, t.VERSION, t.SCAN_CAR, t.MSG_INFO, t.STOP_OVER_TIME,
|
|
t.LAMP_STATE, t.ENTRUST_STATE, t.VERSION, t.SCAN_CAR, t.MSG_INFO, t.STOP_OVER_TIME,
|
|
|
t.VALID_IS_PRE, t.RED_GREEN_LIGHT_STATE, t.FRONT_INFRARED_RAY_STATE, t.REAR_INFRARED_RAY_STATE,
|
|
t.VALID_IS_PRE, t.RED_GREEN_LIGHT_STATE, t.FRONT_INFRARED_RAY_STATE, t.REAR_INFRARED_RAY_STATE,
|
|
|
- t.RFID_STATE
|
|
|
|
|
|
|
+ t.RFID_STATE, t.ZERO_STATE, t.AUTOSCALE_IP, t.PLC_IP, t.DVR_IP
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="select">
|
|
<sql id="select">
|
|
|
SELECT <include refid="columns" /> FROM METER_BASE_SCALE_POINT
|
|
SELECT <include refid="columns" /> FROM METER_BASE_SCALE_POINT
|
|
@@ -256,6 +260,18 @@
|
|
|
<if test="rfidState != null and rfidState != ''">
|
|
<if test="rfidState != null and rfidState != ''">
|
|
|
and RFID_STATE = #{rfidState}
|
|
and RFID_STATE = #{rfidState}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null and zeroState != ''">
|
|
|
|
|
+ and ZERO_STATE = #{zeroState}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null and autoscaleIp != ''">
|
|
|
|
|
+ and AUTOSCALE_IP = #{autoscaleIp}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null and plcIp != ''">
|
|
|
|
|
+ and PLC_IP = #{plcIp}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null and dvrIp != ''">
|
|
|
|
|
+ and DVR_IP = #{dvrIp}
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="whereLike">
|
|
<sql id="whereLike">
|
|
@@ -425,6 +441,18 @@
|
|
|
<if test="rfidState != null and rfidState != ''">
|
|
<if test="rfidState != null and rfidState != ''">
|
|
|
and RFID_STATE LIKE '%${rfidState}%'
|
|
and RFID_STATE LIKE '%${rfidState}%'
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null and zeroState != ''">
|
|
|
|
|
+ and ZERO_STATE LIKE '%${zeroState}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null and autoscaleIp != ''">
|
|
|
|
|
+ and AUTOSCALE_IP LIKE '%${autoscaleIp}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null and plcIp != ''">
|
|
|
|
|
+ and PLC_IP LIKE '%${plcIp}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null and dvrIp != ''">
|
|
|
|
|
+ and DVR_IP LIKE '%${dvrIp}%'
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
@@ -596,6 +624,18 @@
|
|
|
<if test="rfidState != null and rfidState != ''">
|
|
<if test="rfidState != null and rfidState != ''">
|
|
|
or RFID_STATE = #{rfidState}
|
|
or RFID_STATE = #{rfidState}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null and zeroState != ''">
|
|
|
|
|
+ or ZERO_STATE = #{zeroState}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null and autoscaleIp != ''">
|
|
|
|
|
+ or AUTOSCALE_IP = #{autoscaleIp}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null and plcIp != ''">
|
|
|
|
|
+ or PLC_IP = #{plcIp}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null and dvrIp != ''">
|
|
|
|
|
+ or DVR_IP = #{dvrIp}
|
|
|
|
|
+ </if>
|
|
|
</delete>
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
<insert id="insert" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
|
insert into METER_BASE_SCALE_POINT (SCALE_POINT_NO, SCALE_POINT_NAME, BASE_SPOT_NO,
|
|
insert into METER_BASE_SCALE_POINT (SCALE_POINT_NO, SCALE_POINT_NAME, BASE_SPOT_NO,
|
|
@@ -616,7 +656,9 @@
|
|
|
LAMP_STATE, ENTRUST_STATE, VERSION,
|
|
LAMP_STATE, ENTRUST_STATE, VERSION,
|
|
|
SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE, FRONT_INFRARED_RAY_STATE,
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE, FRONT_INFRARED_RAY_STATE,
|
|
|
- REAR_INFRARED_RAY_STATE, RFID_STATE)
|
|
|
|
|
|
|
+ REAR_INFRARED_RAY_STATE, RFID_STATE, ZERO_STATE,
|
|
|
|
|
+ AUTOSCALE_IP, PLC_IP, DVR_IP
|
|
|
|
|
+ )
|
|
|
values (#{scalePointNo,jdbcType=VARCHAR}, #{scalePointName,jdbcType=VARCHAR}, #{baseSpotNo,jdbcType=VARCHAR},
|
|
values (#{scalePointNo,jdbcType=VARCHAR}, #{scalePointName,jdbcType=VARCHAR}, #{baseSpotNo,jdbcType=VARCHAR},
|
|
|
#{baseSpotName,jdbcType=VARCHAR}, #{weighInstrumentModel,jdbcType=VARCHAR}, #{weighInstrumentParam,jdbcType=VARCHAR},
|
|
#{baseSpotName,jdbcType=VARCHAR}, #{weighInstrumentModel,jdbcType=VARCHAR}, #{weighInstrumentParam,jdbcType=VARCHAR},
|
|
|
#{moxaIp,jdbcType=VARCHAR}, #{moxaPort,jdbcType=VARCHAR}, #{validFlag,jdbcType=VARCHAR},
|
|
#{moxaIp,jdbcType=VARCHAR}, #{moxaPort,jdbcType=VARCHAR}, #{validFlag,jdbcType=VARCHAR},
|
|
@@ -635,7 +677,9 @@
|
|
|
#{lampState,jdbcType=VARCHAR}, #{entrustState,jdbcType=VARCHAR}, #{version,jdbcType=DECIMAL},
|
|
#{lampState,jdbcType=VARCHAR}, #{entrustState,jdbcType=VARCHAR}, #{version,jdbcType=DECIMAL},
|
|
|
#{scanCar,jdbcType=VARCHAR}, #{msgInfo,jdbcType=VARCHAR}, #{stopOverTime,jdbcType=VARCHAR},
|
|
#{scanCar,jdbcType=VARCHAR}, #{msgInfo,jdbcType=VARCHAR}, #{stopOverTime,jdbcType=VARCHAR},
|
|
|
#{validIsPre,jdbcType=VARCHAR}, #{redGreenLightState,jdbcType=VARCHAR}, #{frontInfraredRayState,jdbcType=VARCHAR},
|
|
#{validIsPre,jdbcType=VARCHAR}, #{redGreenLightState,jdbcType=VARCHAR}, #{frontInfraredRayState,jdbcType=VARCHAR},
|
|
|
- #{rearInfraredRayState,jdbcType=VARCHAR}, #{rfidState,jdbcType=VARCHAR})
|
|
|
|
|
|
|
+ #{rearInfraredRayState,jdbcType=VARCHAR}, #{rfidState,jdbcType=VARCHAR}, #{zeroState,jdbcType=VARCHAR},
|
|
|
|
|
+ #{autoscaleIp,jdbcType=VARCHAR}, #{plcIp,jdbcType=VARCHAR}, #{dvrIp,jdbcType=VARCHAR}
|
|
|
|
|
+ )
|
|
|
</insert>
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
<insert id="insertSelective" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
|
insert into METER_BASE_SCALE_POINT
|
|
insert into METER_BASE_SCALE_POINT
|
|
@@ -805,6 +849,18 @@
|
|
|
<if test="rfidState != null">
|
|
<if test="rfidState != null">
|
|
|
RFID_STATE,
|
|
RFID_STATE,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null">
|
|
|
|
|
+ ZERO_STATE,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null">
|
|
|
|
|
+ AUTOSCALE_IP,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null">
|
|
|
|
|
+ PLC_IP,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null">
|
|
|
|
|
+ DVR_IP,
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="scalePointNo != null">
|
|
<if test="scalePointNo != null">
|
|
@@ -972,6 +1028,18 @@
|
|
|
<if test="rfidState != null">
|
|
<if test="rfidState != null">
|
|
|
#{rfidState,jdbcType=VARCHAR},
|
|
#{rfidState,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null">
|
|
|
|
|
+ #{zeroState,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null">
|
|
|
|
|
+ #{autoscaleIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null">
|
|
|
|
|
+ #{plcIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null">
|
|
|
|
|
+ #{dvrIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
@@ -1029,7 +1097,11 @@
|
|
|
RED_GREEN_LIGHT_STATE = #{redGreenLightState,jdbcType=VARCHAR},
|
|
RED_GREEN_LIGHT_STATE = #{redGreenLightState,jdbcType=VARCHAR},
|
|
|
FRONT_INFRARED_RAY_STATE = #{frontInfraredRayState,jdbcType=VARCHAR},
|
|
FRONT_INFRARED_RAY_STATE = #{frontInfraredRayState,jdbcType=VARCHAR},
|
|
|
REAR_INFRARED_RAY_STATE = #{rearInfraredRayState,jdbcType=VARCHAR},
|
|
REAR_INFRARED_RAY_STATE = #{rearInfraredRayState,jdbcType=VARCHAR},
|
|
|
- RFID_STATE = #{rfidState,jdbcType=VARCHAR}
|
|
|
|
|
|
|
+ RFID_STATE = #{rfidState,jdbcType=VARCHAR},
|
|
|
|
|
+ ZERO_STATE = #{zeroState,jdbcType=VARCHAR},
|
|
|
|
|
+ AUTOSCALE_IP = #{autoscaleIp,jdbcType=VARCHAR},
|
|
|
|
|
+ PLC_IP = #{plcIp,jdbcType=VARCHAR},
|
|
|
|
|
+ DVR_IP = #{dvrIp,jdbcType=VARCHAR}
|
|
|
where SCALE_POINT_NO = #{scalePointNo,jdbcType=VARCHAR}
|
|
where SCALE_POINT_NO = #{scalePointNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.baseinfo.meterbasescalepoint.model.MeterBaseScalePoint">
|
|
@@ -1197,6 +1269,18 @@
|
|
|
<if test="rfidState != null">
|
|
<if test="rfidState != null">
|
|
|
RFID_STATE = #{rfidState,jdbcType=VARCHAR},
|
|
RFID_STATE = #{rfidState,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="zeroState != null">
|
|
|
|
|
+ ZERO_STATE = #{zeroState,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="autoscaleIp != null">
|
|
|
|
|
+ AUTOSCALE_IP = #{autoscaleIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="plcIp != null">
|
|
|
|
|
+ PLC_IP = #{plcIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="dvrIp != null">
|
|
|
|
|
+ DVR_IP = #{dvrIp,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where SCALE_POINT_NO = #{scalePointNo,jdbcType=VARCHAR}
|
|
where SCALE_POINT_NO = #{scalePointNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
@@ -1234,7 +1318,8 @@
|
|
|
SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
SCAN_CAR, MSG_INFO, STOP_OVER_TIME,
|
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE,
|
|
VALID_IS_PRE, RED_GREEN_LIGHT_STATE,
|
|
|
FRONT_INFRARED_RAY_STATE, REAR_INFRARED_RAY_STATE,
|
|
FRONT_INFRARED_RAY_STATE, REAR_INFRARED_RAY_STATE,
|
|
|
- RFID_STATE)
|
|
|
|
|
|
|
+ RFID_STATE, ZERO_STATE, AUTOSCALE_IP,
|
|
|
|
|
+ PLC_IP, DVR_IP)
|
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
|
select
|
|
select
|
|
|
#{item.scalePointNo,jdbcType=VARCHAR},
|
|
#{item.scalePointNo,jdbcType=VARCHAR},
|
|
@@ -1257,7 +1342,8 @@
|
|
|
#{item.scanCar,jdbcType=VARCHAR}, #{item.msgInfo,jdbcType=VARCHAR}, #{item.stopOverTime,jdbcType=VARCHAR},
|
|
#{item.scanCar,jdbcType=VARCHAR}, #{item.msgInfo,jdbcType=VARCHAR}, #{item.stopOverTime,jdbcType=VARCHAR},
|
|
|
#{item.validIsPre,jdbcType=VARCHAR}, #{item.redGreenLightState,jdbcType=VARCHAR},
|
|
#{item.validIsPre,jdbcType=VARCHAR}, #{item.redGreenLightState,jdbcType=VARCHAR},
|
|
|
#{item.frontInfraredRayState,jdbcType=VARCHAR}, #{item.rearInfraredRayState,jdbcType=VARCHAR},
|
|
#{item.frontInfraredRayState,jdbcType=VARCHAR}, #{item.rearInfraredRayState,jdbcType=VARCHAR},
|
|
|
- #{item.rfidState,jdbcType=VARCHAR} from dual
|
|
|
|
|
|
|
+ #{item.rfidState,jdbcType=VARCHAR}, #{item.zeroState,jdbcType=VARCHAR}, #{item.autoscaleIp,jdbcType=VARCHAR},
|
|
|
|
|
+ #{item.plcIp,jdbcType=VARCHAR}, #{item.dvrIp,jdbcType=VARCHAR} from dual
|
|
|
</foreach> )
|
|
</foreach> )
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
@@ -1483,6 +1569,22 @@
|
|
|
<foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
<foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
|
when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.rfidState,jdbcType=VARCHAR}
|
|
when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.rfidState,jdbcType=VARCHAR}
|
|
|
</foreach>
|
|
</foreach>
|
|
|
|
|
+ ,ZERO_STATE=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
|
|
|
+ when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.zeroState,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ ,AUTOSCALE_IP=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
|
|
|
+ when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.autoscaleIp,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ ,PLC_IP=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
|
|
|
+ when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.plcIp,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ ,DVR_IP=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case SCALE_POINT_NO" separator=" ">
|
|
|
|
|
+ when #{item.scalePointNo,jdbcType=VARCHAR} then #{item.dvrIp,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
where SCALE_POINT_NO in
|
|
where SCALE_POINT_NO in
|
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
|
#{item.scalePointNo,jdbcType=VARCHAR}
|
|
#{item.scalePointNo,jdbcType=VARCHAR}
|