| | |
| | | <result property="seamlessNumber" column="seamless_number" /> |
| | | <result property="seamlessSupplierId" column="seamless_supplier_id" /> |
| | | <result property="seamlessSupplierName" column="seamless_supplier_name" /> |
| | | <result property="notes" column="notes" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | <if test="seamlessNumber != null">seamless_number = #{seamlessNumber},</if> |
| | | <if test="seamlessSupplierId != null">seamless_supplier_id = #{seamlessSupplierId},</if> |
| | | <if test="seamlessSupplierName != null">seamless_supplier_name = #{seamlessSupplierName},</if> |
| | | <if test="notes != null">notes = #{notes},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |