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
Hide 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 {
private
Long
id
;
@ApiModelProperty
(
value
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@ApiModelProperty
(
value
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@ApiModelProperty
(
value
=
"时间类型"
)
private
String
timeType
;
...
...
@@ -38,4 +38,4 @@ public class AppointmentTimeManageDTO implements Serializable {
private
String
useState
;
}
\ No newline at end of file
}
hmit-admin/src/main/java/io/hmit/modules/appointment/entity/AppointmentTimeManageEntity.java
View file @
cd69ad0f
...
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
/**
* 开始时间
*/
private
Date
startTime
;
private
String
startTime
;
/**
* 结束时间
*/
private
Date
endTime
;
private
String
endTime
;
/**
* 时间类型
*/
...
...
@@ -39,4 +39,4 @@ public class AppointmentTimeManageEntity extends BaseEntity {
* 使用状态 1 正在使用; 2 未使用
*/
private
String
useState
;
}
\ No newline at end of file
}
hmit-admin/src/main/java/io/hmit/modules/appointment/excel/AppointmentTimeManageExcel.java
View file @
cd69ad0f
...
...
@@ -16,9 +16,9 @@ public class AppointmentTimeManageExcel {
@Excel
(
name
=
"主键ID"
)
private
Long
id
;
@Excel
(
name
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@Excel
(
name
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@Excel
(
name
=
"时间类型"
)
private
String
timeType
;
@Excel
(
name
=
"时间间隔"
)
...
...
@@ -26,4 +26,4 @@ public class AppointmentTimeManageExcel {
@Excel
(
name
=
"使用状态 1 正在使用; 2 未使用"
)
private
String
useState
;
}
\ No newline at end of file
}
hmit-api/src/main/java/io/hmit/modules/appointment/controller/AppointmentTimeManageController.java
View file @
cd69ad0f
...
...
@@ -40,7 +40,7 @@ public class AppointmentTimeManageController {
@GetMapping
(
"getTime"
)
@ApiOperation
(
"获取当前正使用的时间段"
)
public
Result
<
AppointmentTimeManageDTO
>
getTime
(
@PathVariable
(
"id"
)
Long
id
){
public
Result
<
AppointmentTimeManageDTO
>
getTime
(){
AppointmentTimeManageDTO
data
=
appointmentTimeManageService
.
getByUseState
();
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 {
private
Long
id
;
@ApiModelProperty
(
value
=
"开始时间"
)
private
Date
startTime
;
private
String
startTime
;
@ApiModelProperty
(
value
=
"结束时间"
)
private
Date
endTime
;
private
String
endTime
;
@ApiModelProperty
(
value
=
"时间类型"
)
private
String
timeType
;
...
...
@@ -38,4 +38,4 @@ public class AppointmentTimeManageDTO implements Serializable {
private
String
useState
;
}
\ No newline at end of file
}
hmit-api/src/main/java/io/hmit/modules/appointment/entity/AppointmentTimeManageEntity.java
View file @
cd69ad0f
...
...
@@ -22,11 +22,11 @@ public class AppointmentTimeManageEntity extends BaseEntity {
/**
* 开始时间
*/
private
Date
startTime
;
private
String
startTime
;
/**
* 结束时间
*/
private
Date
endTime
;
private
String
endTime
;
/**
* 时间类型
*/
...
...
@@ -39,4 +39,4 @@ public class AppointmentTimeManageEntity extends BaseEntity {
* 使用状态 1 正在使用; 2 未使用
*/
private
String
useState
;
}
\ 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