宜昌华友原料库管理软件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
5.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<sqlMap namespace="IO_CONTROL" xmlns="http://ibatis.apache.org/mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<alias>
<typeAlias alias="IO_CONTROL" type="SiaSun.LMS.Model.IO_CONTROL, SiaSun.LMS.Model" />
</alias>
<resultMaps>
<resultMap id="SelectResult" class="IO_CONTROL">
<result property="CONTROL_ID" column="control_id" />
<result property="RELATIVE_CONTROL_ID" column="relative_control_id" />
<result property="MANAGE_ID" column="manage_id" />
<result property="CELL_GROUP" column="cell_group" />
<result property="STOCK_BARCODE" column="stock_barcode" />
<result property="PRE_CONTROL_STATUS" column="pre_control_status" />
<result property="CONTROL_TASK_TYPE" column="control_task_type" />
<result property="CONTROL_TASK_LEVEL" column="control_task_level" />
<result property="START_WAREHOUSE_CODE" column="start_warehouse_code" />
<result property="END_WAREHOUSE_CODE" column="end_warehouse_code" />
<result property="START_DEVICE_CODE" column="start_device_code" />
<result property="END_DEVICE_CODE" column="end_device_code" />
<result property="CONTROL_STATUS" column="control_status" />
<result property="ERROR_TEXT" column="error_text" />
<result property="CONTROL_BEGIN_TIME" column="control_begin_time" />
<result property="CONTROL_END_TIME" column="control_end_time" />
<result property="CONTROL_REMARK" column="control_remark" />
</resultMap>
</resultMaps>
<statements>
<select id="IO_CONTROL_SELECT" parameterClass="int" resultMap="SelectResult">
Select
control_id,
relative_control_id,
manage_id,
cell_group,
stock_barcode,
pre_control_status,
control_task_type,
control_task_level,
start_warehouse_code,
end_warehouse_code,
start_device_code,
end_device_code,
control_status,
error_text,
control_begin_time,
control_end_time,
control_remark
From IO_CONTROL
</select>
<select id="IO_CONTROL_SELECT_BY_ID" parameterClass="int" extends = "IO_CONTROL_SELECT" resultMap="SelectResult">
<dynamic prepend="WHERE">
<isParameterPresent>
control_id=#CONTROL_ID#
</isParameterPresent>
</dynamic>
</select>
<select id="IO_CONTROL_SELECT_BY_STOCK_BARCODE" parameterClass="int" extends = "IO_CONTROL_SELECT" resultMap="SelectResult">
<dynamic prepend="WHERE">
<isParameterPresent>
stock_barcode=#STOCK_BARCODE#
</isParameterPresent>
</dynamic>
</select>
<select id="IO_CONTROL_SELECT_BY_END_DEVICE_CODE" parameterClass="int" extends = "IO_CONTROL_SELECT" resultMap="SelectResult">
<dynamic prepend="WHERE">
<isParameterPresent>
end_device_code=#END_DEVICE_CODE#
</isParameterPresent>
</dynamic>
</select>
<select id="IO_CONTROL_SELECT_BY_MANAGE_ID" parameterClass="int" extends = "IO_CONTROL_SELECT" resultMap="SelectResult">
<dynamic prepend="WHERE">
<isParameterPresent>
manage_id=#MANAGE_ID#
</isParameterPresent>
</dynamic>
</select>
<insert id="IO_CONTROL_INSERT" parameterClass="IO_CONTROL">
Insert Into IO_CONTROL (
relative_control_id,
manage_id,
cell_group,
stock_barcode,
pre_control_status,
control_task_type,
control_task_level,
start_warehouse_code,
end_warehouse_code,
start_device_code,
end_device_code,
control_status,
error_text,
control_begin_time,
control_end_time,
control_remark
)Values(
#RELATIVE_CONTROL_ID#,
#MANAGE_ID#,
#CELL_GROUP#,
#STOCK_BARCODE#,
#PRE_CONTROL_STATUS#,
#CONTROL_TASK_TYPE#,
#CONTROL_TASK_LEVEL#,
#START_WAREHOUSE_CODE#,
#END_WAREHOUSE_CODE#,
#START_DEVICE_CODE#,
#END_DEVICE_CODE#,
#CONTROL_STATUS#,
#ERROR_TEXT#,
#CONTROL_BEGIN_TIME#,
#CONTROL_END_TIME#,
#CONTROL_REMARK#
)
<selectKey resultClass="int" type="post" property="CONTROL_ID">
select @@IDENTITY as value
</selectKey>
</insert>
<update id="IO_CONTROL_UPDATE" parameterClass="IO_CONTROL">
Update IO_CONTROL Set
relative_control_id=#RELATIVE_CONTROL_ID#,
manage_id=#MANAGE_ID#,
cell_group=#CELL_GROUP#,
stock_barcode=#STOCK_BARCODE#,
pre_control_status=#PRE_CONTROL_STATUS#,
control_task_type=#CONTROL_TASK_TYPE#,
control_task_level=#CONTROL_TASK_LEVEL#,
start_warehouse_code=#START_WAREHOUSE_CODE#,
end_warehouse_code=#END_WAREHOUSE_CODE#,
start_device_code=#START_DEVICE_CODE#,
end_device_code=#END_DEVICE_CODE#,
control_status=#CONTROL_STATUS#,
error_text=#ERROR_TEXT#,
control_begin_time=#CONTROL_BEGIN_TIME#,
control_end_time=#CONTROL_END_TIME#,
control_remark=#CONTROL_REMARK#
<dynamic prepend="WHERE">
<isParameterPresent>
control_id=#CONTROL_ID#
</isParameterPresent>
</dynamic>
</update>
<delete id="IO_CONTROL_DELETE" parameterClass="int">
Delete From IO_CONTROL
<dynamic prepend="WHERE">
<isParameterPresent>
manage_id=#MANAGE_ID#
</isParameterPresent>
</dynamic>
</delete>
<delete id="IO_CONTROL_DELETE_BY_CONTROL_ID" parameterClass="int">
Delete From IO_CONTROL
<dynamic prepend="WHERE">
<isParameterPresent>
control_id=#CONTROL_ID#
</isParameterPresent>
</dynamic>
</delete>
</statements>
</sqlMap>