refactor(supervision): 优化Excel导出字段,隐藏内部字段并补充字典翻译

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wsm
2026-06-22 14:42:29 +08:00
co-authored by Claude Opus 4.7
parent 58d82dd2ba
commit d22d229a3d
3 changed files with 17 additions and 17 deletions
@@ -122,11 +122,11 @@ public class DqInspectTask implements Serializable {
@Schema(description = "措施数量")
private java.lang.Integer measureCount;
/**流程实例ID*/
@Excel(name = "流程实例ID", width = 15)
//@Excel(name = "流程实例ID", width = 15)
@Schema(description = "流程实例ID")
private java.lang.String bpmProcessId;
/**流程状态*/
@Excel(name = "流程状态", width = 15, dicCode = "super_status")
//@Excel(name = "流程状态", width = 15, dicCode = "super_status")
@Dict(dicCode = "super_status")
@Schema(description = "流程状态")
private java.lang.String bpmStatus;
@@ -139,11 +139,11 @@ public class DqInspectTask implements Serializable {
@Schema(description = "督办次数")
private java.lang.String superviseCount;
/**排序*/
@Excel(name = "排序", width = 15)
//@Excel(name = "排序", width = 15)
@Schema(description = "排序")
private java.lang.Integer sortNo;
/**删除标识*/
@Excel(name = "删除标识", width = 15)
//@Excel(name = "删除标识", width = 15)
@Schema(description = "删除标识")
@TableLogic
private java.lang.String delFlag;