diff --git a/src/main/java/com/chinaunicom/zyhy/ebtp/supplier/common/SecurityConfig.java b/src/main/java/com/chinaunicom/zyhy/ebtp/supplier/common/SecurityConfig.java
deleted file mode 100644
index 5e6826a..0000000
--- a/src/main/java/com/chinaunicom/zyhy/ebtp/supplier/common/SecurityConfig.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.chinaunicom.zyhy.ebtp.supplier.common;
-
-import org.springframework.context.annotation.Configuration;
-import org.springframework.security.config.annotation.web.builders.HttpSecurity;
-import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
-
-@Configuration
-public class SecurityConfig extends WebSecurityConfigurerAdapter {
-
- @Override
- protected void configure(HttpSecurity http) throws Exception {
- http
- .authorizeRequests()
- .anyRequest().permitAll()
- .and()
- .csrf().disable();
- }
-}
diff --git a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoEvaluate.dao/mapper/CoscoEvaluateTaskMapper.xml b/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoEvaluate.dao/mapper/CoscoEvaluateTaskMapper.xml
index 0160183..c6adc2e 100644
--- a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoEvaluate.dao/mapper/CoscoEvaluateTaskMapper.xml
+++ b/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoEvaluate.dao/mapper/CoscoEvaluateTaskMapper.xml
@@ -342,33 +342,39 @@
+
+ select cet.id,
+ cet.evaluate_theme as evaluateTheme,
+ '单位' as tenantName,
+ cec.category_name as categoryName,
+ cet.start_time as startTime,
+ cet.end_time as endTime,
+ cet.status,
+ cet.dept_id as deptId,
+ cet.approve_status as approveStatus,
+ case
+ when cet.approve_status = 0 then '审批中'
+ when cet.approve_status = 1 then '通过'
+ when cet.approve_status = 2 then '驳回'
+ else '未审批' end as approveName,
+ case
+ when cet.status = 0 then '待评价'
+ when cet.status = 1 then '评价中'
+ when cet.status = 2 then '已结束' end as statusName
+ from cosco_evaluate_task cet
+
+ left join cosco_evaluate_task_supplier_user cetsu on cet.id=cetsu.evaluate_task_id
+ left join cosco_category cec on cet.category_id=cec.id
+