|
@@ -22,6 +22,7 @@
|
|
|
opc.result,
|
|
|
opc.av_flag,
|
|
|
opc.port_flag,
|
|
|
+ opc.fetch_flag,
|
|
|
opc.created_flag,
|
|
|
opc.position_flag,
|
|
|
opc.x_position,
|
|
@@ -56,6 +57,7 @@
|
|
|
opc.result,
|
|
|
opc.av_flag,
|
|
|
opc.port_flag,
|
|
|
+ opc.fetch_flag,
|
|
|
opc.created_flag,
|
|
|
opc.position_flag,
|
|
|
opc.x_position,
|
|
@@ -81,6 +83,9 @@
|
|
|
<if test="portFlag != null">
|
|
|
and opc.port_flag = #{portFlag}
|
|
|
</if>
|
|
|
+ <if test="fetchFlag != null">
|
|
|
+ and opc.fetch_flag = #{fetchFlag}
|
|
|
+ </if>
|
|
|
<if test="positionFlag != null">
|
|
|
and opc.position_flag = #{positionFlag}
|
|
|
</if>
|
|
@@ -180,6 +185,12 @@
|
|
|
<if test="item.positionFlag != null">
|
|
|
position_flag = #{item.positionFlag}
|
|
|
</if>
|
|
|
+ <if test="item.fetchFlag != null">
|
|
|
+ fetch_flag = #{fetchFlag}
|
|
|
+ </if>
|
|
|
+ <if test="item.portFlag != null">
|
|
|
+ port_flag = #{portFlag}
|
|
|
+ </if>
|
|
|
<if test="item.xPosition != null">
|
|
|
x_position = #{item.xPosition}
|
|
|
</if>
|