| | |
| | | </insert> |
| | | |
| | | <insert id="insertOpeApplyList" parameterType="java.util.List"> |
| | | |
| | | insert into ope_apply |
| | | (id, apply_code, reagent_id, num, deadline, apply_user_id, objective, status, approve_user_id, memo, valid_flag, create_time, update_time,apply_goal,apply_price,first_user) |
| | | values |
| | | <foreach collection="list" item="opeApply" separator=","> |
| | | (#{opeApply.id}, #{opeApply.applyCode}, #{opeApply.reagent.id}, #{opeApply.num}, #{opeApply.deadline}, |
| | | #{opeApply.applyUserId}, #{opeApply.objective}, #{opeApply.status}, #{opeApply.approveUserId}, #{opeApply.memo}, 1, now(), now(),#{opeApply.applyGoal},#{opeApply.reagent.price},#{opeApply.approveUserId}) |
| | | </foreach> |
| | | </insert> |
| | | <insert id="insertList"> |
| | | insert into ope_apply |