Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
361d0e68
Commit
361d0e68
authored
Feb 28, 2020
by
董有沛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单管理修改
parent
c37454d9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
common/src/main/java/com/winsun/bean/Order.java
+2
-5
service-manager/src/main/java/com/winsun/controller/OrderController.java
+1
-1
No files found.
common/src/main/java/com/winsun/bean/Order.java
View file @
361d0e68
package
com
.
winsun
.
bean
;
import
java.io.Serializable
;
import
java.
sq
l.Date
;
import
java.
uti
l.Date
;
import
com.baomidou.mybatisplus.annotations.TableId
;
import
com.baomidou.mybatisplus.annotations.TableName
;
import
com.baomidou.mybatisplus.enums.IdType
;
import
lombok.Data
;
...
...
@@ -20,8 +18,7 @@ public class Order implements Serializable{
/**
* 主键
*/
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
int
id
;
private
String
id
;
/**
* 订单号
...
...
service-manager/src/main/java/com/winsun/controller/OrderController.java
View file @
361d0e68
...
...
@@ -92,7 +92,7 @@ public class OrderController extends BaseController {
wrapper
.
le
(
StringUtils
.
isNotBlank
(
successTimeEnd
),
"success_time"
,
successTimeEnd
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
userType
),
"user_type"
,
userType
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
orderNumber
),
"order_number"
,
orderNumber
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
kapin
),
"kapin"
,
kapin
);
//
wrapper.eq(StringUtils.isNotBlank(kapin), "kapin", kapin);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
customerName
),
"customer_name"
,
customerName
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
businessNumber
),
"business_number"
,
businessNumber
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
contactNumber
),
"contact_number"
,
contactNumber
);
...
...
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