@ -591,6 +591,19 @@
values (#{partNo}, #{site}, #{buNo}, #{codeNo}, #{subCodeSeqNo,jdbcType=FLOAT}, #{codeDesc}, #{itemNo, jdbcType=FLOAT}, #{itNo}, #{textValue}, #{numValue, jdbcType=FLOAT}, #{recordType})
</insert>
<update id= "updatePartItemValue" parameterType= "PartSubPropertiesValueData" >
UPDATE part_sub_properties_value
SET text_value = #{textValue},
num_value = #{numValue, jdbcType=FLOAT}
WHERE part_no = #{partNo}
AND site = #{site}
AND bu_no = #{buNo}
AND record_type = #{recordType}
AND code_no = #{codeNo}
AND sub_code_seq_no = #{subCodeSeqNo}
AND item_no = #{itemNo}
</update>
<delete id= "deletePartItem" parameterType= "PartSubPropertiesValueData" >
delete from part_sub_properties_value
where part_no = #{partNo} and site = #{site} and bu_no = #{buNo} and record_type = #{recordType} and code_no = #{codeNo} and sub_code_seq_no = #{subCodeSeqNo} and item_no = #{itemNo}