bug修复

This commit is contained in:
guo 2024-01-17 09:42:34 +08:00
parent b560b03761
commit 4450404233
2 changed files with 5 additions and 2 deletions

View File

@ -152,8 +152,10 @@ public class TaskProgressRt implements Serializable {
@Excel(name = "结束预警", width = 15, replace = {"提前_1", "正常_2", "逾期_3"}) @Excel(name = "结束预警", width = 15, replace = {"提前_1", "正常_2", "逾期_3"})
@ApiModelProperty(value = "结束预警1提前2正常3逾期") @ApiModelProperty(value = "结束预警1提前2正常3逾期")
private Integer endWarning; private Integer endWarning;
@ApiModelProperty(value = "bim构件") @ApiModelProperty(value = "隐藏的构件id多个用分割)")
private String bimComponent; private String hiddenComponentId;
@ApiModelProperty(value = "构件颜色json")
private String componentColorJson;
/** /**
* 负责人名称 * 负责人名称

View File

@ -294,6 +294,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/xmgl/aiAnalyseHardWareAlarmRecord/callback").permitAll() .antMatchers("/xmgl/aiAnalyseHardWareAlarmRecord/callback").permitAll()
.antMatchers("/xmgl/workerInfo/selectWorkerInfoList").permitAll() .antMatchers("/xmgl/workerInfo/selectWorkerInfoList").permitAll()
.antMatchers("/xmgl/workerInfo/countEntryAndExitNum").permitAll() .antMatchers("/xmgl/workerInfo/countEntryAndExitNum").permitAll()
.antMatchers("/xmgl/aiAnalyseHardWareAlarmRecord/selectAiAnalyseHardWareAlarmList").permitAll()
.antMatchers(HttpMethod.OPTIONS, "/**").anonymous() .antMatchers(HttpMethod.OPTIONS, "/**").anonymous()
.anyRequest().authenticated() // 剩下所有的验证都需要验证 .anyRequest().authenticated() // 剩下所有的验证都需要验证
.and() .and()