feat(xispeak): 实体类关联督办状态和反馈状态字典

- BgXiSpeak.bpmStatus 关联 super_status 字典
- BgXiSpeakFeedback.completionStatus 关联 feedback_status 字典

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wsm
2026-07-09 15:23:10 +08:00
co-authored by Claude Opus 4.7
parent 3d1309a0ad
commit cb2d38004a
2 changed files with 4 additions and 4 deletions
@@ -181,8 +181,8 @@ public class BgXiSpeak implements Serializable {
@TableLogic
private java.lang.Integer delFlag;
/**流程引擎状态字段*/
// @ExcelColumn(name = "流程引擎状态字段", width = 15)
@Schema(description = "流程引擎状态字段")
@Dict( dicCode = "super_status" )
@Schema(description = "督办状态")
private java.lang.Integer bpmStatus;
/**督办次数*/
@Excel(name = "督办次数", width = 15)
@@ -81,8 +81,8 @@ public class BgXiSpeakFeedback implements Serializable {
/**完成状态*/
@Excel(name = "反馈措施完成状态", width = 15)
@Schema(description = "反馈措施完成状态(0推进中,1已完成)")
@Dict( dicCode = "measure_complete_status")
@Schema(description = "反馈措施完成状态(未开始(1) / 进行中(2) / 已完成(3))")
@Dict( dicCode = "feedback_status")
private java.lang.String completionStatus;
/**是否存在完成风险(0不存在,1存在)*/