Commit 1e74e346 authored by zhaobiyan's avatar zhaobiyan

新增会员编码字段,刷新历史数据

parent 53a6a1a1
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -165,7 +165,7 @@ ...@@ -165,7 +165,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -201,7 +201,7 @@ ...@@ -201,7 +201,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -471,7 +471,7 @@ ...@@ -471,7 +471,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
<include refid="myCustomerQuery"/> <include refid="myCustomerQuery"/>
...@@ -1422,7 +1422,7 @@ ...@@ -1422,7 +1422,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -1456,7 +1456,7 @@ ...@@ -1456,7 +1456,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
...@@ -1532,7 +1532,7 @@ ...@@ -1532,7 +1532,7 @@
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 AND contact.enter_open_sea_time is NOT NULL WHERE 1=1 AND contact.deleted = 0 AND contact.enter_open_sea_time is NOT NULL
<include refid="myCustomerQuery"/> <include refid="myCustomerQuery"/>
...@@ -1567,7 +1567,7 @@ ...@@ -1567,7 +1567,7 @@
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 AND contact.enter_open_sea_time is NOT NULL WHERE 1=1 AND contact.deleted = 0 AND contact.enter_open_sea_time is NOT NULL
<include refid="myCustomerQuery"/> <include refid="myCustomerQuery"/>
</select> </select>
...@@ -1638,7 +1638,7 @@ ...@@ -1638,7 +1638,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
<if test="deptId != null and deptId>0"> <if test="deptId != null and deptId>0">
...@@ -1675,7 +1675,7 @@ ...@@ -1675,7 +1675,7 @@
left join ecw_customer_credit credit left join ecw_customer_credit credit
on contact.credit_level = credit.id on contact.credit_level = credit.id
left join ecw_country ec on contact.country = ec.id left join ecw_country ec on contact.country = ec.id
left join member_user mu on a.member_id = mu.id left join member_user mu on contact.member_id = mu.id
WHERE 1=1 AND contact.deleted = 0 WHERE 1=1 AND contact.deleted = 0
<if test="deptId != null and deptId>0"> <if test="deptId != null and deptId>0">
......
...@@ -26,7 +26,6 @@ public class SecurityConfiguration { ...@@ -26,7 +26,6 @@ public class SecurityConfiguration {
registry.antMatchers("/swagger-ui.html").anonymous() registry.antMatchers("/swagger-ui.html").anonymous()
.antMatchers("/swagger-resources/**").anonymous() .antMatchers("/swagger-resources/**").anonymous()
.antMatchers("/webjars/**").anonymous() .antMatchers("/webjars/**").anonymous()
.antMatchers("/doc.html#/**").anonymous()
.antMatchers("/*/api-docs").anonymous(); .antMatchers("/*/api-docs").anonymous();
// Spring Boot Actuator 的安全配置 // Spring Boot Actuator 的安全配置
registry.antMatchers("/actuator").anonymous() registry.antMatchers("/actuator").anonymous()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment