Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
918ec7b9
Commit
918ec7b9
authored
Jun 25, 2019
by
hanfeng
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'base-modify' of
http://10.5.52.3/youjj/cloud-platform
into base-modify
parents
a68c3310
66095540
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
AppUserDTO.java
...m/github/wxiaoqi/security/admin/feign/dto/AppUserDTO.java
+1
-0
OrderTourVerificationController.java
.../platform/order/rest/OrderTourVerificationController.java
+2
-2
TourGoodVerificationBiz.java
...a/com/xxfc/platform/tour/biz/TourGoodVerificationBiz.java
+1
-1
TourGoodVerificationMapper.java
...xxfc/platform/tour/mapper/TourGoodVerificationMapper.java
+1
-1
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/feign/dto/AppUserDTO.java
View file @
918ec7b9
...
@@ -20,6 +20,7 @@ public class AppUserDTO {
...
@@ -20,6 +20,7 @@ public class AppUserDTO {
private
String
birthday
;
private
String
birthday
;
private
String
personSign
;
private
String
personSign
;
private
String
remark
;
private
String
remark
;
private
Integer
imUserid
;
private
String
wxOpenid
;
private
String
wxOpenid
;
private
String
unionid
;
private
String
unionid
;
private
String
openid
;
private
String
openid
;
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/rest/OrderTourVerificationController.java
View file @
918ec7b9
...
@@ -49,7 +49,7 @@ public class OrderTourVerificationController extends CommonBaseController {
...
@@ -49,7 +49,7 @@ public class OrderTourVerificationController extends CommonBaseController {
){
){
return
ObjectRestResponse
.
succ
(
verificationBiz
.
getVerificationList
(
page
,
limit
,
verificationId
));
return
ObjectRestResponse
.
succ
(
verificationBiz
.
getVerificationList
(
page
,
limit
,
verificationId
));
}
}
@RequestMapping
(
value
=
"/verification/check"
,
method
=
RequestMethod
.
POS
T
)
@RequestMapping
(
value
=
"/verification/check"
,
method
=
RequestMethod
.
GE
T
)
@ApiOperation
(
value
=
"旅游核销"
)
@ApiOperation
(
value
=
"旅游核销"
)
public
ObjectRestResponse
<
BaseOrder
>
check
(
public
ObjectRestResponse
<
BaseOrder
>
check
(
@RequestParam
(
value
=
"no"
,
defaultValue
=
""
)
String
no
@RequestParam
(
value
=
"no"
,
defaultValue
=
""
)
String
no
...
@@ -66,7 +66,7 @@ public class OrderTourVerificationController extends CommonBaseController {
...
@@ -66,7 +66,7 @@ public class OrderTourVerificationController extends CommonBaseController {
return
verificationBiz
.
VerificationByOrder
(
no
,
list
,
userDTO
);
return
verificationBiz
.
VerificationByOrder
(
no
,
list
,
userDTO
);
}
}
@RequestMapping
(
value
=
"/verification/finish"
,
method
=
RequestMethod
.
POS
T
)
@RequestMapping
(
value
=
"/verification/finish"
,
method
=
RequestMethod
.
GE
T
)
@ApiOperation
(
value
=
"确定发车"
)
@ApiOperation
(
value
=
"确定发车"
)
public
ObjectRestResponse
<
BaseOrder
>
finishOrder
(
public
ObjectRestResponse
<
BaseOrder
>
finishOrder
(
@RequestParam
(
value
=
"verificationId"
,
defaultValue
=
"0"
)
Integer
verificationId
@RequestParam
(
value
=
"verificationId"
,
defaultValue
=
"0"
)
Integer
verificationId
...
...
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/biz/TourGoodVerificationBiz.java
View file @
918ec7b9
...
@@ -72,7 +72,7 @@ public class TourGoodVerificationBiz extends BaseBiz<TourGoodVerificationMapper,
...
@@ -72,7 +72,7 @@ public class TourGoodVerificationBiz extends BaseBiz<TourGoodVerificationMapper,
* @return
* @return
*/
*/
public
int
updateTourGoodVerificationStatus
(
Integer
verficationId
){
public
int
updateTourGoodVerificationStatus
(
Integer
verficationId
){
return
mapper
.
updateStatusByGoodIdAndSpeIdAndSiteId
(
verficationId
,
0
);
return
mapper
.
updateStatusByGoodIdAndSpeIdAndSiteId
(
verficationId
,
1
);
}
}
/**
/**
...
...
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/mapper/TourGoodVerificationMapper.java
View file @
918ec7b9
...
@@ -46,7 +46,7 @@ public interface TourGoodVerificationMapper extends Mapper<TourGoodVerification>
...
@@ -46,7 +46,7 @@ public interface TourGoodVerificationMapper extends Mapper<TourGoodVerification>
* @param verficationId
* @param verficationId
* @return
* @return
*/
*/
@Update
(
"update tour_good_verification set `status`=#{status}
where
where `id`=#{verficationId}"
)
@Update
(
"update tour_good_verification set `status`=#{status} where `id`=#{verficationId}"
)
int
updateStatusByGoodIdAndSpeIdAndSiteId
(
@Param
(
"verficationId"
)
Integer
verficationId
,
@Param
(
"status"
)
Integer
status
);
int
updateStatusByGoodIdAndSpeIdAndSiteId
(
@Param
(
"verficationId"
)
Integer
verficationId
,
@Param
(
"status"
)
Integer
status
);
/**
/**
...
...
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