问题介绍:
想要删除流程上某个签字意见
解决方案:
只能从数据库删除:
1、先查下数据库,确认对应记录的logid
select t1.logid,t1.remark from workflow_requestlog t1 where t1.requestid=? and t1.operator=?
备份insert语句:
select * from workflow_requestlog t1 where t1.requestid=? and t1.operator=?
2、根据logid删除记录
delete workflow_requestlog where logid=? and requestid=?
建议操作前,做好数据库备份工作,以防误操作