Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
1e74e346
Commit
1e74e346
authored
Jul 23, 2024
by
zhaobiyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增会员编码字段,刷新历史数据
parent
53a6a1a1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
CustomerMapper.xml
...ore/src/main/resources/mapper/customer/CustomerMapper.xml
+11
-11
SecurityConfiguration.java
...nfra/framework/security/config/SecurityConfiguration.java
+0
-1
No files found.
yudao-module-customer/yudao-module-customer-core/src/main/resources/mapper/customer/CustomerMapper.xml
View file @
1e74e346
...
...
@@ -83,7 +83,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -124,7 +124,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -165,7 +165,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -201,7 +201,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -471,7 +471,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
<include
refid=
"myCustomerQuery"
/>
...
...
@@ -1422,7 +1422,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -1456,7 +1456,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
...
...
@@ -1532,7 +1532,7 @@
on contact.credit_level = credit.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
<include
refid=
"myCustomerQuery"
/>
...
...
@@ -1567,7 +1567,7 @@
on contact.credit_level = credit.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
<include
refid=
"myCustomerQuery"
/>
</select>
...
...
@@ -1638,7 +1638,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
<if
test=
"deptId != null and deptId>0"
>
...
...
@@ -1675,7 +1675,7 @@
left join ecw_customer_credit credit
on contact.credit_level = credit.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
<if
test=
"deptId != null and deptId>0"
>
...
...
yudao-module-infra/yudao-module-infra-impl/src/main/java/cn/iocoder/yudao/module/infra/framework/security/config/SecurityConfiguration.java
View file @
1e74e346
...
...
@@ -26,7 +26,6 @@ public class SecurityConfiguration {
registry
.
antMatchers
(
"/swagger-ui.html"
).
anonymous
()
.
antMatchers
(
"/swagger-resources/**"
).
anonymous
()
.
antMatchers
(
"/webjars/**"
).
anonymous
()
.
antMatchers
(
"/doc.html#/**"
).
anonymous
()
.
antMatchers
(
"/*/api-docs"
).
anonymous
();
// Spring Boot Actuator 的安全配置
registry
.
antMatchers
(
"/actuator"
).
anonymous
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment