Commit 8f4348d2 authored by qiyaxin's avatar qiyaxin

获取报销节点通过时间

parent 85b38399
......@@ -14,4 +14,7 @@ public class ProjectCostRequestApproval {
private Boolean isEndApproval;
//整体审核状态
private Integer approveStatus;
// PM通过时间
private String pmPassTime;
}
......@@ -23,7 +23,8 @@
update fygl_project_cost_request
<trim prefix="SET" suffixOverrides=",">
<if test="approveStatus != null">approve_status = #{approveStatus},</if>
<if test="nextNodeId != null">current_audit_role_id = #{nextNodeId}</if>
<if test="nextNodeId != null">current_audit_role_id = #{nextNodeId},</if>
<if test="pmPassTime != null">pm_passtime = #{pmPassTime},</if>
</trim>
where id = #{projectCostId}
</update>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment