Merge branch 'develop_migration' into 'develop_master'

Develop migration

See merge request LiuChao/foton-slrs-system-rest!281
This commit is contained in:
super_liu
2021-12-15 09:10:07 +08:00
2 changed files with 13 additions and 1 deletions
@@ -70,9 +70,21 @@ public class BusProcessEvaluationHis implements Serializable {
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private String updateTime;
@ApiModelProperty(value = "onlyOffice 是否编辑 0 未编辑 1 已编辑")
@TableField("EDIT_STATUS")
private String editStatus;
@ApiModelProperty(value = "onlyOffice 编辑文件存储路径")
@TableField("EDIT_FILE_PATH")
private String editFilePath;
@ApiModelProperty(value = "逻辑状态")
@TableField("FLAG")
private String flag;
@ApiModelProperty(value = "onlyOffice 访问编辑文件全路径")
@TableField(exist = false)
private String downLoadUrl;
}
@@ -99,6 +99,6 @@ public class WebMvcConfig implements WebMvcConfigurer {
// // 添加自定义拦截器,并拦截对应 url
// addInterceptor.addPathPatterns("/**");
addInterceptor.addPathPatterns("/**");
}
}