Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wms_api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
高宇
wms_api
Commits
0bca7943
Commit
0bca7943
authored
Dec 16, 2024
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改门店字段
parent
58be04f2
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
4 deletions
+22
-4
CustInfo.java
src/main/java/org/rcisoft/bus/custinfo/entity/CustInfo.java
+6
-0
CustRecharge.java
...ava/org/rcisoft/bus/custrecharge/entity/CustRecharge.java
+6
-0
CustInfoMapper.xml
src/main/resources/mapper/bus/custInfo/CustInfoMapper.xml
+4
-2
CustRechargeMapper.xml
.../resources/mapper/bus/custRecharge/CustRechargeMapper.xml
+6
-2
No files found.
src/main/java/org/rcisoft/bus/custinfo/entity/CustInfo.java
View file @
0bca7943
...
@@ -117,5 +117,11 @@ public class CustInfo extends CyIdIncreEntity<CustInfo> {
...
@@ -117,5 +117,11 @@ public class CustInfo extends CyIdIncreEntity<CustInfo> {
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
String
customerBalanceMin
;
private
String
customerBalanceMin
;
/**
* 门店名称
*/
@TableField
(
exist
=
false
)
private
String
storeName
;
}
}
src/main/java/org/rcisoft/bus/custrecharge/entity/CustRecharge.java
View file @
0bca7943
...
@@ -121,5 +121,11 @@ public class CustRecharge extends CyIdIncreEntity<CustRecharge> {
...
@@ -121,5 +121,11 @@ public class CustRecharge extends CyIdIncreEntity<CustRecharge> {
*/
*/
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
String
customerTelephone
;
private
String
customerTelephone
;
/**
* 门店名称
*/
@TableField
(
exist
=
false
)
private
String
storeName
;
}
}
src/main/resources/mapper/bus/custInfo/CustInfoMapper.xml
View file @
0bca7943
...
@@ -21,9 +21,10 @@
...
@@ -21,9 +21,10 @@
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
<select
id=
"queryCustInfos"
resultMap=
"BaseResultMap"
>
<select
id=
"queryCustInfos"
resultMap=
"BaseResultMap"
>
select *,create_tb.name as create_name
select *,create_tb.name as create_name
,dept_tb.dept_name as store_name
from cust_info as cio
from cust_info as cio
left join sys_user as create_tb on cio.create_by = create_tb.business_id
left join sys_user as create_tb on cio.create_by = create_tb.business_id
left join sys_dept as dept_tb on cio.store_id = dept_tb.business_id
where 1=1
where 1=1
and cio.del_flag = '0'
and cio.del_flag = '0'
<if
test=
"entity.flag !=null and entity.flag != '' "
>
<if
test=
"entity.flag !=null and entity.flag != '' "
>
...
@@ -69,9 +70,10 @@
...
@@ -69,9 +70,10 @@
</select>
</select>
<select
id=
"queryCustInfosPaged"
resultMap=
"BaseResultMap"
>
<select
id=
"queryCustInfosPaged"
resultMap=
"BaseResultMap"
>
select *,create_tb.name as create_name
select *,create_tb.name as create_name
,dept_tb.dept_name as store_name
from cust_info as cio
from cust_info as cio
left join sys_user as create_tb on cio.create_by = create_tb.business_id
left join sys_user as create_tb on cio.create_by = create_tb.business_id
left join sys_dept as dept_tb on cio.store_id = dept_tb.business_id
where 1=1
where 1=1
and cio.del_flag = '0'
and cio.del_flag = '0'
<if
test=
"entity.flag !=null and entity.flag != '' "
>
<if
test=
"entity.flag !=null and entity.flag != '' "
>
...
...
src/main/resources/mapper/bus/custRecharge/CustRechargeMapper.xml
View file @
0bca7943
...
@@ -23,10 +23,12 @@
...
@@ -23,10 +23,12 @@
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
<select
id=
"queryCustRecharges"
resultMap=
"BaseResultMap"
>
<select
id=
"queryCustRecharges"
resultMap=
"BaseResultMap"
>
select *,create_tb.name as create_name,cio.customer_name as customer_name,cio.customer_telephone as customer_telephone
select *,create_tb.name as create_name,cio.customer_name as customer_name
,cio.customer_telephone as customer_telephone,dept_tb.dept_name as store_name
from cust_recharge as cre
from cust_recharge as cre
left join sys_user as create_tb on cre.create_by = create_tb.business_id
left join sys_user as create_tb on cre.create_by = create_tb.business_id
left join cust_info cio on cre.customer_id = cio.business_id
left join cust_info cio on cre.customer_id = cio.business_id
left join sys_dept as dept_tb on cre.store_id = dept_tb.business_id
where 1=1
where 1=1
and cre.del_flag = '0'
and cre.del_flag = '0'
<if
test=
"entity.flag !=null and entity.flag != '' "
>
<if
test=
"entity.flag !=null and entity.flag != '' "
>
...
@@ -75,10 +77,12 @@
...
@@ -75,10 +77,12 @@
</select>
</select>
<select
id=
"queryCustRechargesPaged"
resultMap=
"BaseResultMap"
>
<select
id=
"queryCustRechargesPaged"
resultMap=
"BaseResultMap"
>
select *,create_tb.name as create_name,cio.customer_name as customer_name,cio.customer_telephone as customer_telephone
select *,create_tb.name as create_name,cio.customer_name as customer_name
,cio.customer_telephone as customer_telephone,dept_tb.dept_name as store_name
from cust_recharge as cre
from cust_recharge as cre
left join sys_user as create_tb on cre.create_by = create_tb.business_id
left join sys_user as create_tb on cre.create_by = create_tb.business_id
left join cust_info cio on cre.customer_id = cio.business_id
left join cust_info cio on cre.customer_id = cio.business_id
left join sys_dept as dept_tb on cre.store_id = dept_tb.business_id
where 1=1
where 1=1
and cre.del_flag = '0'
and cre.del_flag = '0'
<if
test=
"entity.flag !=null and entity.flag != '' "
>
<if
test=
"entity.flag !=null and entity.flag != '' "
>
...
...
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