فهرست منبع

feat(basicData): 更新自主上报文档模板名称

- 将下载模板的默认文件名从"怀化高新区企业信用综合评价材料清单"更改为"企业自主上报模版"
- 在安全配置中为新接口"/crmHighTechZoneEnterprises/ratedLevelDReason"添加了公共访问权限
nahida 8 ماه پیش
والد
کامیت
4096631797

+ 1 - 1
zksy-admin/src/main/java/com/zksy/web/controller/basicData/OwSelfReportingController.java

@@ -100,7 +100,7 @@ public class OwSelfReportingController extends BaseController {
     @GetMapping("/downloadTemplateWord")
     @ApiOperation(value = "下载自主上报文档", notes = "下载自主上报文档")
     public void getUploadTemplate(HttpServletResponse response) throws IOException {
-        DowntemplateUtil.downloadTemplate(response,"怀化高新区企业信用综合评价材料清单");
+        DowntemplateUtil.downloadTemplate(response,"企业自主上报模版");
     }
 
     @GetMapping("/checkInformationByUnicode")

BIN
zksy-admin/src/main/resources/template/企业自主上报模版.xlsx


+ 2 - 1
zksy-framework/src/main/java/com/zksy/framework/config/SecurityConfig.java

@@ -134,7 +134,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
                         "/commonFile/deleteFileById",
                         "/owSelfReporting/downloadTemplateWord",
                         "/owSelfReporting/checkInformationByUnicode",
-                        "/crmHighTechZoneEnterprises/getCreditScoreMostDetailsByUniCode"
+                        "/crmHighTechZoneEnterprises/getCreditScoreMostDetailsByUniCode",
+                        "/crmHighTechZoneEnterprises/ratedLevelDReason"
                 ).permitAll()
                 .antMatchers(
                         HttpMethod.POST,