#
luxiaotao1123
2021-03-25 af73582c1bd3c20e2e805d4df56c111073d3fd6f
src/main/resources/mapper/CustOrderMapper.xml
@@ -10,6 +10,7 @@
        <result column="eType_id" property="eTypeId" />
        <result column="user_code" property="userCode" />
        <result column="qty" property="qty" />
        <result column="total" property="total" />
        <result column="price" property="price" />
        <result column="comment" property="comment" />
        <result column="status" property="status" />
@@ -19,8 +20,8 @@
    </resultMap>
    <update id="completeLoading">
        update man_cust_order set status = 1 where 1=1 and number = #{number}
    <update id="updateStatus">
        update man_cust_order set status = #{status} where 1=1 and number = #{number}
    </update>
</mapper>