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
cd69ad0f
Commit
cd69ad0f
authored
Feb 20, 2021
by
mengmeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify timeManage interface
parent
a2c44eac
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
16 deletions
+16
-16
AppointmentTimeManageDTO.java
...mit/modules/appointment/dto/AppointmentTimeManageDTO.java
+3
-3
AppointmentTimeManageEntity.java
...dules/appointment/entity/AppointmentTimeManageEntity.java
+3
-3
AppointmentTimeManageExcel.java
...modules/appointment/excel/AppointmentTimeManageExcel.java
+3
-3
AppointmentTimeManageController.java
...pointment/controller/AppointmentTimeManageController.java
+1
-1
AppointmentTimeManageDTO.java
...mit/modules/appointment/dto/AppointmentTimeManageDTO.java
+3
-3
AppointmentTimeManageEntity.java
...dules/appointment/entity/AppointmentTimeManageEntity.java
+3
-3
No files found.
hmit-admin/src/main/java/io/hmit/modules/appointment/dto/AppointmentTimeManageDTO.java
View file @
cd69ad0f
...
@@ -23,10 +23,10 @@ public class AppointmentTimeManageDTO implements Serializable {
...
@@ -23,10 +23,10 @@ public class AppointmentTimeManageDTO implements Serializable {
private
Long
id
;
private
Long
id
;
@ApiModelProperty
(
value
=
"开始时间"
)
@ApiModelProperty
(
value
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@ApiModelProperty
(
value
=
"结束时间"
)
@ApiModelProperty
(
value
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@ApiModelProperty
(
value
=
"时间类型"
)
@ApiModelProperty
(
value
=
"时间类型"
)
private
String
timeType
;
private
String
timeType
;
...
...
hmit-admin/src/main/java/io/hmit/modules/appointment/entity/AppointmentTimeManageEntity.java
View file @
cd69ad0f
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
/**
/**
* 开始时间
* 开始时间
*/
*/
private
Date
startTime
;
private
String
startTime
;
/**
/**
* 结束时间
* 结束时间
*/
*/
private
Date
endTime
;
private
String
endTime
;
/**
/**
* 时间类型
* 时间类型
*/
*/
...
...
hmit-admin/src/main/java/io/hmit/modules/appointment/excel/AppointmentTimeManageExcel.java
View file @
cd69ad0f
...
@@ -16,9 +16,9 @@ public class AppointmentTimeManageExcel {
...
@@ -16,9 +16,9 @@ public class AppointmentTimeManageExcel {
@Excel
(
name
=
"主键ID"
)
@Excel
(
name
=
"主键ID"
)
private
Long
id
;
private
Long
id
;
@Excel
(
name
=
"开始时间"
)
@Excel
(
name
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@Excel
(
name
=
"结束时间"
)
@Excel
(
name
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@Excel
(
name
=
"时间类型"
)
@Excel
(
name
=
"时间类型"
)
private
String
timeType
;
private
String
timeType
;
@Excel
(
name
=
"时间间隔"
)
@Excel
(
name
=
"时间间隔"
)
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/controller/AppointmentTimeManageController.java
View file @
cd69ad0f
...
@@ -40,7 +40,7 @@ public class AppointmentTimeManageController {
...
@@ -40,7 +40,7 @@ public class AppointmentTimeManageController {
@GetMapping
(
"getTime"
)
@GetMapping
(
"getTime"
)
@ApiOperation
(
"获取当前正使用的时间段"
)
@ApiOperation
(
"获取当前正使用的时间段"
)
public
Result
<
AppointmentTimeManageDTO
>
getTime
(
@PathVariable
(
"id"
)
Long
id
){
public
Result
<
AppointmentTimeManageDTO
>
getTime
(){
AppointmentTimeManageDTO
data
=
appointmentTimeManageService
.
getByUseState
();
AppointmentTimeManageDTO
data
=
appointmentTimeManageService
.
getByUseState
();
return
new
Result
<
AppointmentTimeManageDTO
>().
ok
(
data
);
return
new
Result
<
AppointmentTimeManageDTO
>().
ok
(
data
);
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/dto/AppointmentTimeManageDTO.java
View file @
cd69ad0f
...
@@ -23,10 +23,10 @@ public class AppointmentTimeManageDTO implements Serializable {
...
@@ -23,10 +23,10 @@ public class AppointmentTimeManageDTO implements Serializable {
private
Long
id
;
private
Long
id
;
@ApiModelProperty
(
value
=
"开始时间"
)
@ApiModelProperty
(
value
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@ApiModelProperty
(
value
=
"结束时间"
)
@ApiModelProperty
(
value
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@ApiModelProperty
(
value
=
"时间类型"
)
@ApiModelProperty
(
value
=
"时间类型"
)
private
String
timeType
;
private
String
timeType
;
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/entity/AppointmentTimeManageEntity.java
View file @
cd69ad0f
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
/**
/**
* 开始时间
* 开始时间
*/
*/
private
Date
startTime
;
private
String
startTime
;
/**
/**
* 结束时间
* 结束时间
*/
*/
private
Date
endTime
;
private
String
endTime
;
/**
/**
* 时间类型
* 时间类型
*/
*/
...
...
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