bug整改

This commit is contained in:
2026-04-22 10:49:30 +08:00
parent 7ab7f7cbd2
commit e276489ef7
12 changed files with 106 additions and 58 deletions
@@ -94,7 +94,7 @@ public class OpinionOfficeAuditController {
cnd.andEX("info.sessionId", "=", sessionId);
// cnd.and("t.taskName", "=", "office");
cnd.and("t.taskName", "=", "schoolAudit");
cnd.and("ta.actorId", "in", List.of(SecurityUtil.getUserId()));
// cnd.and("ta.actorId", "in", List.of(SecurityUtil.getUserId()));
if (approval) {
cnd.and("t.taskState", "in", List.of(ProcessTaskStateEnum.FINISHED.getCode(), ProcessTaskStateEnum.INTERRUPT.getCode()));
@@ -76,26 +76,26 @@ public class OpinionInfo extends BaseModel {
private String delegationId;
@Column
@Comment("建议人ID")
@Comment("记录人ID")
@ColDefine(type = ColType.VARCHAR, width = 32)
private String suggestUserId;
@Column
@Comment("建议人name")
@Comment("记录人name")
@ColDefine(type = ColType.VARCHAR, width = 100)
private String suggestUserName;
@Column
@Comment("建议人code")
@Comment("记录人code")
@ColDefine(type = ColType.VARCHAR, width = 120)
private String suggestUserLoginName;
@Column
@Comment("建议人所属代表团ID")
@Comment("记录人所属讨论组ID")
private String suggestUserDelegationId;
@Column
@Comment("建议人所属代表团名称")
@Comment("记录人所属讨论组名称")
private String suggestUserDelegationName;
@Column