Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gogirl-miniapp-backend
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
huluobin
gogirl-miniapp-backend
Commits
fc60ebd3
Commit
fc60ebd3
authored
Sep 08, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客诉渠道
parent
33e83438
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ComplaintMainServiceImpl.java
...cation/store/complaint/impl/ComplaintMainServiceImpl.java
+1
-0
ComplaintMain.java
...java/com/gogirl/domain/store/complaint/ComplaintMain.java
+12
-1
No files found.
src/main/java/com/gogirl/application/store/complaint/impl/ComplaintMainServiceImpl.java
View file @
fc60ebd3
...
@@ -64,6 +64,7 @@ public class ComplaintMainServiceImpl extends ServiceImpl<ComplaintMainMapper, C
...
@@ -64,6 +64,7 @@ public class ComplaintMainServiceImpl extends ServiceImpl<ComplaintMainMapper, C
complaintMain
.
setPicturePath
(
null
);
complaintMain
.
setPicturePath
(
null
);
complaintMain
.
setRemarks
(
null
);
complaintMain
.
setRemarks
(
null
);
complaintMain
.
setSource
(
ComplaintMain
.
SOURCE_MP
);
complaintMain
.
setSource
(
ComplaintMain
.
SOURCE_MP
);
complaintMain
.
setChannel
(
"小程序问卷"
);
complaintMain
.
setCreateUser
(
orderQuestionOption
.
getCustomerId
());
complaintMain
.
setCreateUser
(
orderQuestionOption
.
getCustomerId
());
complaintMain
.
setStoreId
(
orderManage
.
getDepartmentId
());
complaintMain
.
setStoreId
(
orderManage
.
getDepartmentId
());
this
.
save
(
complaintMain
);
this
.
save
(
complaintMain
);
...
...
src/main/java/com/gogirl/domain/store/complaint/ComplaintMain.java
View file @
fc60ebd3
...
@@ -32,22 +32,33 @@ public class ComplaintMain implements Serializable {
...
@@ -32,22 +32,33 @@ public class ComplaintMain implements Serializable {
//来源 其他
//来源 其他
public
static
final
Integer
SOURCE_OTHER
=
3
;
public
static
final
Integer
SOURCE_OTHER
=
3
;
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
@TableId
(
type
=
IdType
.
AUTO
)
@TableId
(
type
=
IdType
.
AUTO
)
private
Integer
id
;
private
Integer
id
;
@ApiModelProperty
(
value
=
"创建时间"
)
@ApiModelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createDate
;
private
LocalDateTime
createDate
;
@ApiModelProperty
(
value
=
"创建人"
)
@ApiModelProperty
(
value
=
"创建人"
)
private
Integer
createUser
;
private
Integer
createUser
;
@ApiModelProperty
(
value
=
"来源: 售后问卷 = 1, 大众点评 = 2, 小程序客户评价 = 3, 其他 = 4"
)
@ApiModelProperty
(
value
=
"来源: 售后问卷 = 1, 小程序 = 2"
)
private
Integer
source
;
private
Integer
source
;
private
String
channel
;
@ApiModelProperty
(
value
=
"备注"
)
@ApiModelProperty
(
value
=
"备注"
)
private
String
remarks
;
private
String
remarks
;
@ApiModelProperty
(
value
=
"客户id"
)
@ApiModelProperty
(
value
=
"客户id"
)
private
Integer
customerId
;
private
Integer
customerId
;
@ApiModelProperty
(
value
=
"订单id"
)
@ApiModelProperty
(
value
=
"订单id"
)
private
Integer
orderId
;
private
Integer
orderId
;
@ApiModelProperty
(
value
=
"门店id"
)
@ApiModelProperty
(
value
=
"门店id"
)
private
Integer
storeId
;
private
Integer
storeId
;
@ApiModelProperty
(
value
=
"照片"
)
@ApiModelProperty
(
value
=
"照片"
)
private
String
picturePath
;
private
String
picturePath
;
}
}
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