fix(dq): 反馈记录补齐进展状态字典与纪检反馈字段
- bpmStatus 补 @Dict(feedback_status) 注解,修复进展状态列表不显示 - 新增检查情况/监督意见/措施数量字段及表结构增量脚本,修复纪检字段保存丢失 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
+14
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import org.jeecg.common.constant.ProvinceCityArea;
|
||||
import org.jeecg.common.util.SpringContextUtils;
|
||||
import lombok.Data;
|
||||
@@ -78,8 +79,21 @@ public class DqInspectProgress implements Serializable {
|
||||
private java.lang.String workProgress;
|
||||
/**进展状态*/
|
||||
@Excel(name = "进展状态", width = 15, dicCode = "feedback_status")
|
||||
@Dict(dicCode = "feedback_status")
|
||||
@Schema(description = "进展状态")
|
||||
private java.lang.String bpmStatus;
|
||||
/**检查情况*/
|
||||
@Excel(name = "检查情况", width = 15)
|
||||
@Schema(description = "检查情况")
|
||||
private java.lang.String inspectionStatus;
|
||||
/**监督意见*/
|
||||
@Excel(name = "监督意见", width = 15)
|
||||
@Schema(description = "监督意见")
|
||||
private java.lang.String supervisoryOpinion;
|
||||
/**措施数量*/
|
||||
@Excel(name = "措施数量", width = 15)
|
||||
@Schema(description = "措施数量")
|
||||
private java.lang.Integer measureCount;
|
||||
/**删除标识*/
|
||||
@Excel(name = "删除标识", width = 15)
|
||||
@Schema(description = "删除标识")
|
||||
|
||||
Reference in New Issue
Block a user