This commit is contained in:
zhangchenbiao
2024-04-25 16:16:33 +08:00
parent 33cf9be5f2
commit 2b786d2140
2 changed files with 2 additions and 1 deletions

View File

@@ -200,7 +200,7 @@
</select>
<update id="recyclePoint">
update xfsg_point_info set line_id = null, shop_id = null, select_status = 0, update_time = now(), point_status = if(point_status = 6, 5, point_status)) where id = #{pointId}
update xfsg_point_info set line_id = null, shop_id = null, select_status = 0, update_time = now(), point_status = if(point_status = 6, 5, point_status) where id = #{pointId}
</update>
</mapper>

View File

@@ -90,6 +90,7 @@ public class OperationAuditRequest {
pointDetailInfo.setClerkNum(request.getClerkNum());
pointDetailInfo.setClerkFee(request.getClerkFee());
pointDetailInfo.setOperationUserSign(request.getOperationUserSign());
pointDetailInfo.setOperationUserSignTime(new Date());
return pointDetailInfo;
}