Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Q
queueForTicket_bl
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
queueForTicket_bl
Commits
19d1a237
Commit
19d1a237
authored
Feb 24, 2021
by
mengmeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改appoinment_time 字段类型
parent
155ab080
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
AppointmentOrderDTO.java
.../io/hmit/modules/appointment/dto/AppointmentOrderDTO.java
+10
-6
ReservationDTO.java
.../java/io/hmit/modules/appointment/dto/ReservationDTO.java
+1
-1
AppointmentOrderEntity.java
...it/modules/appointment/entity/AppointmentOrderEntity.java
+2
-2
No files found.
hmit-api/src/main/java/io/hmit/modules/appointment/dto/AppointmentOrderDTO.java
View file @
19d1a237
...
...
@@ -42,9 +42,11 @@ public class AppointmentOrderDTO implements Serializable {
@ApiModelProperty
(
value
=
"预约所属的服务事项名称"
)
private
String
serviceName
;
@ApiModelProperty
(
value
=
"是否浙里办预约 0否,1是"
)
private
Integer
isApp
;
@ApiModelProperty
(
value
=
"预约订单所在队列id"
)
private
Long
orderQueueId
;
...
...
@@ -58,13 +60,14 @@ public class AppointmentOrderDTO implements Serializable {
private
String
appointmentIdCard
;
@ApiModelProperty
(
value
=
"预约时间"
)
private
Date
appointmentTime
;
private
String
appointmentTime
;
@ApiModelProperty
(
value
=
"服务办事窗口"
)
private
String
serviceWindow
;
@ApiModelProperty
(
value
=
"备注"
)
private
String
remark
;
/*
@ApiModelProperty(value = "部门ID")
private Long deptId;
...
...
@@ -78,16 +81,17 @@ public class AppointmentOrderDTO implements Serializable {
@ApiModelProperty(value = "订单发起人联系电话")
private String creatorTel;
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createDate
;
@ApiModelProperty(value = "更新者")
private Long updater;
*/
@ApiModelProperty
(
value
=
"更新时间"
)
private
Date
updateDate
;
public
AppointmentOrderDTO
assembleAppointmentOrderDTO
(
ReservationDTO
reservationDTO
){
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createDate
;
public
AppointmentOrderDTO
assembleAppointmentOrderDTO
(
ReservationDTO
reservationDTO
){
AppointmentOrderDTO
dto
=
new
AppointmentOrderDTO
();
Date
dt
=
new
Date
();
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/dto/ReservationDTO.java
View file @
19d1a237
...
...
@@ -44,7 +44,7 @@ public class ReservationDTO implements Serializable {
private
String
appointmentIdCard
;
@ApiModelProperty
(
value
=
"预约时间"
)
private
Date
appointmentTime
;
private
String
appointmentTime
;
@ApiModelProperty
(
value
=
"服务办事窗口"
)
private
String
serviceWindow
;
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/entity/AppointmentOrderEntity.java
View file @
19d1a237
...
...
@@ -66,7 +66,7 @@ public class AppointmentOrderEntity extends BaseEntity {
/**
* 预约时间
*/
private
Date
appointmentTime
;
private
String
appointmentTime
;
/**
* 服务办事窗口
*/
...
...
@@ -95,4 +95,4 @@ public class AppointmentOrderEntity extends BaseEntity {
* 更新时间
*/
private
Date
updateDate
;
}
\ No newline at end of file
}
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