Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pension
Project
Project
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
mengmeng
pension
Commits
99f58bd3
Commit
99f58bd3
authored
Mar 11, 2021
by
mlchun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.订单表添加“取消原因”字段
parent
c1894ee5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
9 deletions
+23
-9
PensionOrderDTO.java
...ava/io/hmit/modules/serviceOrder/dto/PensionOrderDTO.java
+3
-0
PensionOrderEntity.java
.../hmit/modules/serviceOrder/entity/PensionOrderEntity.java
+4
-0
PensionOrderDTO.java
...ava/io/hmit/modules/serviceOrder/dto/PensionOrderDTO.java
+3
-0
PensionOrderEntity.java
.../hmit/modules/serviceOrder/entity/PensionOrderEntity.java
+4
-0
PensionOrderDao.xml
...rc/main/resources/mapper/serviceOrder/PensionOrderDao.xml
+9
-9
No files found.
hmit-admin/src/main/java/io/hmit/modules/serviceOrder/dto/PensionOrderDTO.java
View file @
99f58bd3
...
@@ -49,6 +49,9 @@ public class PensionOrderDTO implements Serializable {
...
@@ -49,6 +49,9 @@ public class PensionOrderDTO implements Serializable {
@ApiModelProperty
(
value
=
"预约时间"
)
@ApiModelProperty
(
value
=
"预约时间"
)
private
Date
appointmentTime
;
private
Date
appointmentTime
;
@ApiModelProperty
(
value
=
"取消原因"
)
private
String
cancelReason
;
@ApiModelProperty
(
value
=
"备注"
)
@ApiModelProperty
(
value
=
"备注"
)
private
String
remark
;
private
String
remark
;
...
...
hmit-admin/src/main/java/io/hmit/modules/serviceOrder/entity/PensionOrderEntity.java
View file @
99f58bd3
...
@@ -55,6 +55,10 @@ public class PensionOrderEntity extends BaseEntity {
...
@@ -55,6 +55,10 @@ public class PensionOrderEntity extends BaseEntity {
* 预约时间
* 预约时间
*/
*/
private
Date
appointmentTime
;
private
Date
appointmentTime
;
/**
* 取消原因
*/
private
String
cancelReason
;
/**
/**
* 备注
* 备注
*/
*/
...
...
hmit-api/src/main/java/io/hmit/modules/serviceOrder/dto/PensionOrderDTO.java
View file @
99f58bd3
...
@@ -52,6 +52,9 @@ public class PensionOrderDTO implements Serializable {
...
@@ -52,6 +52,9 @@ public class PensionOrderDTO implements Serializable {
@ApiModelProperty
(
value
=
"预约时间"
)
@ApiModelProperty
(
value
=
"预约时间"
)
private
Date
appointmentTime
;
private
Date
appointmentTime
;
@ApiModelProperty
(
value
=
"取消原因"
)
private
String
cancelReason
;
@ApiModelProperty
(
value
=
"备注"
)
@ApiModelProperty
(
value
=
"备注"
)
private
String
remark
;
private
String
remark
;
...
...
hmit-api/src/main/java/io/hmit/modules/serviceOrder/entity/PensionOrderEntity.java
View file @
99f58bd3
...
@@ -55,6 +55,10 @@ public class PensionOrderEntity extends BaseEntity {
...
@@ -55,6 +55,10 @@ public class PensionOrderEntity extends BaseEntity {
* 预约时间
* 预约时间
*/
*/
private
Date
appointmentTime
;
private
Date
appointmentTime
;
/**
* 取消原因
*/
private
String
cancelReason
;
/**
/**
* 备注
* 备注
*/
*/
...
...
hmit-api/src/main/resources/mapper/serviceOrder/PensionOrderDao.xml
View file @
99f58bd3
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date
po.creator, po.creator_name, po.creator_tel, po.create_date
FROM pension_order po
FROM pension_order po
WHERE po.id = #{orderId} AND po.status = #{status}
WHERE po.id = #{orderId} AND po.status = #{status}
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
@@ -71,7 +71,7 @@
...
@@ -71,7 +71,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
@@ -88,7 +88,7 @@
...
@@ -88,7 +88,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
@@ -99,7 +99,7 @@
...
@@ -99,7 +99,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
@@ -110,7 +110,7 @@
...
@@ -110,7 +110,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
@@ -124,7 +124,7 @@
...
@@ -124,7 +124,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps, tb_user tu
FROM pension_order po, pension_service ps, tb_user tu
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps, tb_user tu
FROM pension_order po, pension_service ps, tb_user tu
...
@@ -147,7 +147,7 @@
...
@@ -147,7 +147,7 @@
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
SELECT po.id, po.order_num, po.status, po.status_name, po.address, po.service_id, po.service_name,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.appointment_person, po.appointment_phone, po.appointment_time, po.remark,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.order_recipient_id, po.order_recipient_name, po.order_recipient_time, po.order_recipient_phone,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.act_price, po.community_name, po.community_id, po.dept_id,
po.cancel_reason,
po.creator, po.creator_name, po.creator_tel, po.create_date,
po.creator, po.creator_name, po.creator_tel, po.create_date,
ps.icon
ps.icon
FROM pension_order po, pension_service ps
FROM pension_order po, pension_service ps
...
...
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