Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit f34a2f7d
authored
Nov 29, 2023
by
Ren Ping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:服务类消息新增服务类消息类别,0:上门延误,1:服务超时
1 parent
353554db
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
project-order/src/main/java/com/dituhui/pea/order/dto/MsgDTO.java
project-order/src/main/java/com/dituhui/pea/order/dto/MsgResp.java
project-order/src/main/java/com/dituhui/pea/order/entity/MsgEntity.java
project-order/src/main/java/com/dituhui/pea/order/dto/MsgDTO.java
View file @
f34a2f7
...
@@ -60,6 +60,11 @@ public class MsgDTO {
...
@@ -60,6 +60,11 @@ public class MsgDTO {
*/
*/
private
String
capacityDate
;
private
String
capacityDate
;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
private
Integer
serviceMsgType
;
@Data
@Data
public
static
class
IdDTO
{
public
static
class
IdDTO
{
...
...
project-order/src/main/java/com/dituhui/pea/order/dto/MsgResp.java
View file @
f34a2f7
...
@@ -76,5 +76,10 @@ public class MsgResp {
...
@@ -76,5 +76,10 @@ public class MsgResp {
*/
*/
private
String
receivers
;
private
String
receivers
;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
private
Integer
serviceMsgType
;
}
}
project-order/src/main/java/com/dituhui/pea/order/entity/MsgEntity.java
View file @
f34a2f7
...
@@ -85,5 +85,11 @@ public class MsgEntity {
...
@@ -85,5 +85,11 @@ public class MsgEntity {
@Column
(
name
=
"capacity_date"
)
@Column
(
name
=
"capacity_date"
)
private
String
capacityDate
;
private
String
capacityDate
;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
@Column
(
name
=
"service_msg_type"
)
private
Integer
serviceMsgType
;
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment