Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
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
ee346a54
Commit
ee346a54
authored
Mar 24, 2021
by
mengmeng
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
31a39f1b
3e8a0fae
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
222 additions
and
45 deletions
+222
-45
README.md
README.md
+10
-1
AppointmentOrderServiceImpl.java
...appointment/service/impl/AppointmentOrderServiceImpl.java
+3
-1
CheckReservationTimeTask.java
...va/io/hmit/modules/job/task/CheckReservationTimeTask.java
+50
-0
WebMvcConfig.java
hmit-api/src/main/java/io/hmit/config/WebMvcConfig.java
+9
-1
ApiLoginController.java
.../src/main/java/io/hmit/controller/ApiLoginController.java
+12
-1
AppointmentOrderController.java
...es/appointment/controller/AppointmentOrderController.java
+39
-27
AppointmentServiceController.java
.../appointment/controller/AppointmentServiceController.java
+1
-0
AppointmentOrderDTO.java
.../io/hmit/modules/appointment/dto/AppointmentOrderDTO.java
+3
-3
AppointmentOrderServiceDTO.java
...t/modules/appointment/dto/AppointmentOrderServiceDTO.java
+6
-1
AppointmentOrderServiceImpl.java
...appointment/service/impl/AppointmentOrderServiceImpl.java
+10
-2
application-dev.yml
hmit-api/src/main/resources/application-dev.yml
+1
-1
hmit-api.kotlin_module
hmit-api/target/classes/META-INF/hmit-api.kotlin_module
+0
-0
Constant.java
...ommon/src/main/java/io/hmit/common/constant/Constant.java
+44
-2
BaseEntity.java
...ommon/src/main/java/io/hmit/common/entity/BaseEntity.java
+1
-1
DateUtils.java
...-common/src/main/java/io/hmit/common/utils/DateUtils.java
+33
-4
No files found.
README.md
View file @
ee346a54
# hmit-security-enterprise
\ No newline at end of file
# hmit-security-enterprise
## 订单状态 appointment_order 表 status
***
### status 0 失约/爽约
### status 1 已预约
### status 2 预约已取消
### status 3 已取号
### status 4 消除无效号码
***
hmit-admin/src/main/java/io/hmit/modules/appointment/service/impl/AppointmentOrderServiceImpl.java
View file @
ee346a54
...
...
@@ -23,12 +23,14 @@ public class AppointmentOrderServiceImpl extends CrudServiceImpl<AppointmentOrde
@Override
public
QueryWrapper
<
AppointmentOrderEntity
>
getWrapper
(
Map
<
String
,
Object
>
params
){
String
id
=
(
String
)
params
.
get
(
"id"
);
String
status
=
null
!=
params
.
get
(
"status"
)?
params
.
get
(
"status"
).
toString
():
""
;
QueryWrapper
<
AppointmentOrderEntity
>
wrapper
=
new
QueryWrapper
<>();
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
id
),
"id"
,
id
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
status
),
"status"
,
status
);
return
wrapper
;
}
}
\ No newline at end of file
}
hmit-admin/src/main/java/io/hmit/modules/job/task/CheckReservationTimeTask.java
0 → 100644
View file @
ee346a54
package
io
.
hmit
.
modules
.
job
.
task
;
import
io.hmit.common.constant.Constant
;
import
io.hmit.common.utils.DateUtils
;
import
io.hmit.modules.appointment.service.AppointmentOrderService
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
java.text.ParseException
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.Map
;
/**
* 检查是否超出预约时间还未取号
* 是 则将订单状态status改成0 爽约/失约
*
*/
@Component
(
"checkReservationTime"
)
public
class
CheckReservationTimeTask
implements
ITask
{
private
Logger
logger
=
LoggerFactory
.
getLogger
(
getClass
());
@Autowired
private
AppointmentOrderService
appointmentOrderService
;
@Override
public
void
run
(
String
params
)
{
logger
.
debug
(
"TestTask定时任务正在执行,参数为:{}"
,
params
);
Map
<
String
,
Object
>
queryParams
=
new
HashMap
<>();
queryParams
.
put
(
"status"
,
Constant
.
ReservationStatus
.
RESERVATION
.
getValue
());
appointmentOrderService
.
list
(
queryParams
).
stream
().
forEach
(
item
->{
System
.
out
.
println
(
"订单状态:"
+
item
.
getStatus
()+
" "
+
item
.
getServiceName
());
try
{
if
(
DateUtils
.
compareTime
(
item
.
getAppointmentTime
())){
item
.
setStatus
(
Constant
.
ReservationStatus
.
BREAK_APPOINTMENT
.
getValue
());
item
.
setStatusName
(
Constant
.
ReservationStatus
.
BREAK_APPOINTMENT
.
getMsg
());
item
.
setUpdateDate
(
new
Date
());
appointmentOrderService
.
update
(
item
);
}
}
catch
(
ParseException
e
)
{
e
.
printStackTrace
();
}
});
}
}
hmit-api/src/main/java/io/hmit/config/WebMvcConfig.java
View file @
ee346a54
...
...
@@ -6,6 +6,7 @@ import com.fasterxml.jackson.databind.module.SimpleModule;
import
com.fasterxml.jackson.databind.ser.std.ToStringSerializer
;
import
io.hmit.common.utils.DateUtils
;
import
io.hmit.interceptor.AuthorizationInterceptor
;
import
io.hmit.interceptor.CorsInterceptor
;
import
io.hmit.resolver.LoginUserHandlerMethodArgumentResolver
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Bean
;
...
...
@@ -32,6 +33,9 @@ import java.util.TimeZone;
@Configuration
public
class
WebMvcConfig
implements
WebMvcConfigurer
{
@Autowired
private
CorsInterceptor
corsInterceptor
;
@Autowired
private
AuthorizationInterceptor
authorizationInterceptor
;
@Autowired
...
...
@@ -39,7 +43,11 @@ public class WebMvcConfig implements WebMvcConfigurer {
@Override
public
void
addInterceptors
(
InterceptorRegistry
registry
)
{
// 跨域拦截器需放在最上面
registry
.
addInterceptor
(
corsInterceptor
).
addPathPatterns
(
"/**"
);
registry
.
addInterceptor
(
authorizationInterceptor
).
addPathPatterns
(
"/api/**"
);
registry
.
addInterceptor
(
authorizationInterceptor
).
addPathPatterns
(
"/app/**"
);
}
@Override
...
...
@@ -78,4 +86,4 @@ public class WebMvcConfig implements WebMvcConfigurer {
converter
.
setObjectMapper
(
mapper
);
return
converter
;
}
}
\ No newline at end of file
}
hmit-api/src/main/java/io/hmit/controller/ApiLoginController.java
View file @
ee346a54
...
...
@@ -4,6 +4,7 @@ package io.hmit.controller;
import
com.baomidou.mybatisplus.extension.api.R
;
import
io.hmit.annotation.Login
;
import
io.hmit.common.constant.Constant
;
import
io.hmit.common.utils.MD5
;
import
io.hmit.common.utils.Result
;
import
io.hmit.common.validator.ValidatorUtils
;
import
io.hmit.config.ZhelibanUtils
;
...
...
@@ -85,6 +86,9 @@ public class ApiLoginController {
Map
<
String
,
Object
>
user_map
=
ZhelibanUtils
.
getUserInfo
(
map
);
System
.
out
.
println
(
"UserMap是——————————————————————————————"
);
System
.
out
.
println
(
user_map
);
if
(
"6001"
.
equals
(
user_map
.
get
(
"result"
))){
return
new
Result
().
error
(
"ticket失效"
);
}
if
(
user_map
.
get
(
"idnum"
)
!=
null
){
//判断是否已经存在了这条信息
UserEntity
oldUser
=
userService
.
queryByIdnum
(
URLEncoder
.
encode
(
user_map
.
get
(
"idnum"
).
toString
(),
"UTF8"
));
...
...
@@ -94,13 +98,20 @@ public class ApiLoginController {
UserEntity
user
=
new
UserEntity
();
user
.
setUsername
(
user_map
.
get
(
"username"
).
toString
());
user
.
setMobile
(
URLEncoder
.
encode
(
user_map
.
get
(
"mobile"
).
toString
(),
"UTF8"
));
user
.
setPassword
(
URLEncoder
.
encode
(
user_map
.
get
(
"idnum"
).
toString
(
),
"UTF8"
));
user
.
setPassword
(
URLEncoder
.
encode
(
MD5
.
md5
(
user_map
.
get
(
"idnum"
).
toString
()
),
"UTF8"
));
user
.
setIdCardNo
(
URLEncoder
.
encode
(
user_map
.
get
(
"idnum"
).
toString
(),
"UTF8"
));
userService
.
insert
(
user
);
userId
=
user
.
getId
();
userMap
.
put
(
"username"
,
user
.
getUsername
());
userMap
.
put
(
"mobile"
,
user
.
getMobile
());
userMap
.
put
(
"idnum"
,
user
.
getIdCardNo
());
}
else
{
userId
=
oldUser
.
getId
();
userMap
.
put
(
"username"
,
oldUser
.
getUsername
());
userMap
.
put
(
"mobile"
,
oldUser
.
getMobile
());
userMap
.
put
(
"idnum"
,
oldUser
.
getIdCardNo
());
}
TokenEntity
tokenEntity
=
tokenService
.
createToken
(
userId
);
userMap
.
put
(
"token"
,
tokenEntity
.
getToken
());
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/controller/AppointmentOrderController.java
View file @
ee346a54
...
...
@@ -2,6 +2,7 @@ package io.hmit.modules.appointment.controller;
import
com.alibaba.fastjson.JSONObject
;
import
com.google.gson.JsonObject
;
import
io.hmit.annotation.Login
;
import
io.hmit.annotation.LoginUser
;
import
io.hmit.common.constant.Constant
;
import
io.hmit.common.page.PageData
;
...
...
@@ -24,6 +25,7 @@ import io.swagger.annotations.Api;
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParams
;
import
io.swagger.annotations.ApiOperation
;
import
org.apache.catalina.User
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -52,21 +54,23 @@ public class AppointmentOrderController {
@Autowired
private
AppointmentOrderServiceService
appointmentOrderServiceService
;
@Login
@GetMapping
(
"page"
)
@ApiOperation
(
"分页"
)
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
Constant
.
PAGE
,
value
=
"当前页码,从1开始"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"int"
)
,
@ApiImplicitParam
(
name
=
Constant
.
LIMIT
,
value
=
"每页显示记录数"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"int"
)
,
@ApiImplicitParam
(
name
=
Constant
.
ORDER_FIELD
,
value
=
"排序字段"
,
paramType
=
"query"
,
dataType
=
"String"
)
,
@ApiImplicitParam
(
name
=
Constant
.
ORDER
,
value
=
"排序方式,可选值(asc、desc)"
,
paramType
=
"query"
,
dataType
=
"String"
),
@ApiImplicitParam
(
name
=
"appointmentIdCard"
,
value
=
"预约人身份证"
,
paramType
=
"query"
,
dataType
=
"String"
),
@ApiImplicitParam
(
name
=
"appointmentPhone"
,
value
=
"预约人电话"
,
paramType
=
"query"
,
dataType
=
"String"
)
@ApiImplicitParam
(
name
=
Constant
.
ORDER
,
value
=
"排序方式,可选值(asc、desc)"
,
paramType
=
"query"
,
dataType
=
"String"
)
})
public
Result
<
PageData
<
AppointmentOrderDTO
>>
page
(
@ApiIgnore
@RequestParam
Map
<
String
,
Object
>
params
){
public
Result
<
PageData
<
AppointmentOrderDTO
>>
page
(
@ApiIgnore
@RequestParam
Map
<
String
,
Object
>
params
,
@ApiIgnore
@LoginUser
UserEntity
userEntity
){
params
.
put
(
"appointmentIdCard"
,
userEntity
.
getIdCardNo
());
params
.
put
(
"appointmentPhone"
,
userEntity
.
getMobile
());
PageData
<
AppointmentOrderDTO
>
page
=
appointmentOrderService
.
page
(
params
);
page
.
getList
().
forEach
(
l
->{
//判断已取号或者消除过号
if
(
null
!=
l
.
getStatus
()
&&
(
2
==
l
.
getStatus
()
||
4
==
l
.
getStatus
())
){
if
(
null
!=
l
.
getStatus
()
&&
Constant
.
ReservationStatus
.
GET_NUM
.
getValue
()<=
l
.
getStatus
()
){
YynumberDTO
yynumberDTO
=
appointmentOrderService
.
findByYuNumber
(
l
.
getAppointmentNum
());
l
.
setYynumberDTO
(
yynumberDTO
);
}
...
...
@@ -75,18 +79,19 @@ public class AppointmentOrderController {
return
new
Result
<
PageData
<
AppointmentOrderDTO
>>().
ok
(
page
);
}
@Login
@GetMapping
(
"{id}"
)
@ApiOperation
(
"信息,预约详情接口"
)
public
Result
<
AppointmentOrderDTO
>
get
(
@PathVariable
(
"id"
)
Long
id
){
AppointmentOrderDTO
data
=
appointmentOrderService
.
get
(
id
);
if
(
null
!=
data
.
getStatus
()
&&
(
2
==
data
.
getStatus
()
||
4
==
data
.
getStatus
()
)
)
{
if
(
null
!=
data
.
getStatus
()
&&
Constant
.
ReservationStatus
.
GET_NUM
.
getValue
()<=
data
.
getStatus
(
)
)
{
data
.
setYynumberDTO
(
appointmentOrderService
.
findByYuNumber
(
data
.
getAppointmentNum
()));
}
return
new
Result
<
AppointmentOrderDTO
>().
ok
(
data
);
}
@GetMapping
(
"orderInfo"
)
@ApiOperation
(
"根据手机号或身份证号获取信息"
)
@ApiOperation
(
"根据手机号或身份证号获取信息
(给杭州接口)
"
)
public
Result
<
List
<
ReservationOrderInfoDTO
>>
queryInfo
(
String
identity
){
// PageData<AppointmentOrderDTO> pageData = appointmentOrderService.getAppointmentInfoPage(params, identity);
List
<
ReservationOrderInfoDTO
>
data
=
appointmentOrderService
.
getAppointmentInfoPage
(
identity
);
...
...
@@ -103,7 +108,8 @@ public class AppointmentOrderController {
@Login
@PostMapping
@ApiOperation
(
"预约保存"
)
public
Result
<
ReservationSuccessDTO
>
save
(
@RequestBody
ReservationDTO
dto
,
@ApiIgnore
@LoginUser
UserEntity
userEntity
){
public
Result
<
ReservationSuccessDTO
>
save
(
@RequestBody
ReservationDTO
dto
,
@ApiIgnore
@LoginUser
UserEntity
userEntity
){
//校验数据
ValidatorUtils
.
validateEntity
(
dto
,
AddGroup
.
class
,
DefaultGroup
.
class
);
...
...
@@ -113,7 +119,7 @@ public class AppointmentOrderController {
ReservationSuccessDTO
successData
=
ConvertUtils
.
sourceToTarget
(
appointmentOrderDTO
,
ReservationSuccessDTO
.
class
);
AppointmentOrderServiceDTO
orderServiceDTO
=
new
AppointmentOrderServiceDTO
().
assembleAppointmentOrderServiceDTO
(
appointmentOrderDTO
);
AppointmentOrderServiceDTO
orderServiceDTO
=
new
AppointmentOrderServiceDTO
().
assembleAppointmentOrderServiceDTO
(
appointmentOrderDTO
,
userEntity
);
appointmentOrderServiceService
.
save
(
orderServiceDTO
);
...
...
@@ -121,7 +127,7 @@ public class AppointmentOrderController {
}
@PostMapping
(
"/updateReservationInfo"
)
@ApiOperation
(
"更新预约人取号信息"
)
@ApiOperation
(
"更新预约人取号信息
(给杭州接口)
"
)
public
Result
updateReservationInfo
(
@RequestBody
UpdateInfoDTO
dto
){
AppointmentOrderEntity
appointmentOrderEntity
=
appointmentOrderService
.
selectById
(
dto
.
getOrderId
());
...
...
@@ -134,33 +140,38 @@ public class AppointmentOrderController {
appointmentOrderEntity
.
setServiceWindow
(
String
.
join
(
","
,
dto
.
getListWin
()));
appointmentOrderEntity
.
setTicketDate
(
dto
.
getTicketDate
());
//取号机生成取号码则设置取号预约状态为:完成
appointmentOrderEntity
.
setStatus
(
2
);
appointmentOrderEntity
.
setStatusName
(
"已完成"
);
appointmentOrderEntity
.
setStatus
(
Constant
.
ReservationStatus
.
GET_NUM
.
getValue
()
);
appointmentOrderEntity
.
setStatusName
(
Constant
.
ReservationStatus
.
GET_NUM
.
getMsg
()
);
appointmentOrderService
.
updateById
(
appointmentOrderEntity
);
return
new
Result
();
}
@Login
@GetMapping
(
"/cancel/{id}"
)
@ApiOperation
(
"预约取消"
)
public
Result
cancelReservation
(
@PathVariable
(
"id"
)
Long
id
){
public
Result
cancelReservation
(
@PathVariable
(
"id"
)
Long
id
,
@ApiIgnore
@LoginUser
UserEntity
user
){
AppointmentOrderDTO
data
=
appointmentOrderService
.
get
(
id
);
data
.
setStatus
(
3
);
data
.
setServiceName
(
"已取消"
);
data
.
setStatus
(
Constant
.
ReservationStatus
.
CANCEL
.
getValue
()
);
data
.
setServiceName
(
Constant
.
ReservationStatus
.
CANCEL
.
getMsg
()
);
data
.
setUpdateDate
(
new
Date
());
data
.
setUpdateDate
(
new
Date
());
data
.
setUpdater
(
user
.
getId
());
appointmentOrderService
.
update
(
data
);
return
new
Result
();
}
@Login
@GetMapping
(
"/deleteOverNum/{id}"
)
@ApiOperation
(
"消除过号"
)
public
Result
deleteOverNum
(
@PathVariable
(
"id"
)
Long
id
,
@ApiIgnore
@LoginUser
UserEntity
user
){
AppointmentOrderDTO
data
=
appointmentOrderService
.
get
(
id
);
data
.
setStatus
(
4
);
data
.
setStatusName
(
"已消除过号"
);
data
.
setStatus
(
Constant
.
ReservationStatus
.
ELIMINATE_INVALID_NUM
.
getValue
()
);
data
.
setStatusName
(
Constant
.
ReservationStatus
.
ELIMINATE_INVALID_NUM
.
getMsg
()
);
data
.
setUpdateDate
(
new
Date
());
data
.
setUpdater
(
user
.
getId
());
appointmentOrderService
.
update
(
data
);
...
...
@@ -179,28 +190,31 @@ public class AppointmentOrderController {
String
appointmentPhone
=
appointmentOrderDTO
.
getAppointmentPhone
();
String
serviceId
=
appointmentOrderDTO
.
getServiceId
().
toString
();
String
appointmentPerson
=
appointmentOrderDTO
.
getAppointmentPerson
();
String
sign
=
"hjfhsdjfueytRwYSdsa%hdf^jdshfh*KGh$e"
+
serviceId
+
new
Date
().
getTime
();
String
nowtime
=
String
.
valueOf
(
System
.
currentTimeMillis
()/
1000
);
String
sign
=
"hjfhsdjfueytRwYSdsa%hdf^jdshfh*KGh$e"
+
serviceId
+
nowtime
;
//判断签到时间是否在预约时间前
//调用取号机取号接口,获取取号信息,并更新预约号。
// http://IP:8223/smartqueue/yynumber?sQueueInfoID=24&time=1613389800&sign=ee2c3fc1bdabf439f00aa90af6a0a68f&sTel=13988888888&sName=王小二&sCardID=333111123456
String
url
=
"http://
IP
:8223/smartqueue/yynumber?"
+
String
url
=
"http://
192.168.1.97
:8223/smartqueue/yynumber?"
+
"sQueueInfoID="
+
serviceId
+
"&time="
+
n
ew
Date
().
getTime
()
+
"&time="
+
n
owtime
+
"&sign="
+
MD5
.
md5
(
sign
)+
"&sTel="
+
appointmentPhone
+
"&sName="
+
appointmentPerson
+
"&sCardID="
+
appointmentIdCard
;
String
s
=
HttpRequestUtil
.
sendGetAndRetrieveContent
(
url
);
// String s = HttpRequestUtil.sendGetAndRetrieveContent(url);
String
s
=
"{\"nStatus\":0,\"sMsg\":\"成功\",\"nWait\":9,\"sCallTime\":\"\",\"sRegTime\":\"2018-12-21 13:49:21\",\"sQueueName\":\"交通违法处理\",\"listWin\":[\"B03\",\"B04\",\"B05\",\"B06\"]}\n"
;
YynumberDTO
yynumberDTO
=
JSONObject
.
parseObject
(
s
,
YynumberDTO
.
class
);
//根据接口返回的结果更新预约单号
if
(
"0"
.
equals
(
yynumberDTO
.
getNStatus
()
)){
if
(
0
==
yynumberDTO
.
getNStatus
(
)){
appointmentOrderDTO
.
setAppointmentNum
(
yynumberDTO
.
getSPaperNumber
());
appointmentOrderDTO
.
setTicketDate
(
yynumberDTO
.
getSRegTime
());
appointmentOrderDTO
.
setWaitNum
(
yynumberDTO
.
getNWait
());
appointmentOrderDTO
.
setServiceWindow
(
yynumberDTO
.
getListWin
().
toString
(
));
appointmentOrderDTO
.
setStatus
(
2
);
appointmentOrderDTO
.
setStatusName
(
"签到"
);
appointmentOrderDTO
.
setServiceWindow
(
String
.
join
(
","
,
yynumberDTO
.
getListWin
()
));
appointmentOrderDTO
.
setStatus
(
Constant
.
ReservationStatus
.
GET_NUM
.
getValue
()
);
appointmentOrderDTO
.
setStatusName
(
Constant
.
ReservationStatus
.
GET_NUM
.
getMsg
()
);
appointmentOrderDTO
.
setUpdateDate
(
new
Date
());
appointmentOrderService
.
update
(
appointmentOrderDTO
);
...
...
@@ -218,8 +232,6 @@ public class AppointmentOrderController {
Integer
serviceWaitingNum
=
appointmentOrderService
.
serviceWaitingNum
(
serviceId
);
return
new
Result
().
ok
(
serviceWaitingNum
);
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/controller/AppointmentServiceController.java
View file @
ee346a54
...
...
@@ -50,6 +50,7 @@ public class AppointmentServiceController {
return
new
Result
<
PageData
<
AppointmentServiceDTO
>>().
ok
(
page
);
}
@GetMapping
(
"list"
)
@ApiOperation
(
"服务树形列表"
)
public
Result
<
List
<
AppointmentServiceDTO
>>
list
()
{
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/dto/AppointmentOrderDTO.java
View file @
ee346a54
...
...
@@ -118,9 +118,9 @@ public class AppointmentOrderDTO implements Serializable {
dto
.
setAppointmentTime
(
reservationDTO
.
getAppointmentTime
());
dto
.
setServiceWindow
(
reservationDTO
.
getServiceWindow
());
dto
.
setRemark
(
reservationDTO
.
getRemark
());
dto
.
setCreator
(
Long
.
parseLong
(
userEntity
.
getUserId
())
);
dto
.
setUpdater
(
Long
.
parseLong
(
userEntity
.
getUserId
())
);
dto
.
setCreator
(
userEntity
.
getId
()
);
dto
.
setUpdater
(
userEntity
.
getId
()
);
dto
.
setCreateDate
(
new
Date
());
dto
.
setUpdateDate
(
new
Date
());
return
dto
;
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/dto/AppointmentOrderServiceDTO.java
View file @
ee346a54
package
io
.
hmit
.
modules
.
appointment
.
dto
;
import
io.hmit.entity.UserEntity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
...
...
@@ -43,10 +44,14 @@ public class AppointmentOrderServiceDTO implements Serializable {
@ApiModelProperty
(
value
=
"更新时间"
)
private
Date
updateDate
;
public
AppointmentOrderServiceDTO
assembleAppointmentOrderServiceDTO
(
AppointmentOrderDTO
orderDTO
){
public
AppointmentOrderServiceDTO
assembleAppointmentOrderServiceDTO
(
AppointmentOrderDTO
orderDTO
,
UserEntity
userEntity
){
AppointmentOrderServiceDTO
dto
=
new
AppointmentOrderServiceDTO
();
dto
.
setOrderId
(
orderDTO
.
getId
());
dto
.
setServiceId
(
orderDTO
.
getServiceId
());
dto
.
setCreator
(
userEntity
.
getId
());
dto
.
setUpdater
(
userEntity
.
getId
());
dto
.
setCreateDate
(
new
Date
());
dto
.
setUpdateDate
(
new
Date
());
return
dto
;
}
...
...
hmit-api/src/main/java/io/hmit/modules/appointment/service/impl/AppointmentOrderServiceImpl.java
View file @
ee346a54
...
...
@@ -56,9 +56,16 @@ public class AppointmentOrderServiceImpl extends CrudServiceImpl<AppointmentOrde
@Override
public
QueryWrapper
<
AppointmentOrderEntity
>
getWrapper
(
Map
<
String
,
Object
>
params
){
String
id
=
(
String
)
params
.
get
(
"id"
);
String
userId
=
(
String
)
params
.
get
(
"userId"
);
String
flag
=
(
String
)
params
.
get
(
"flag"
);
String
status
=
(
String
)
params
.
get
(
"status"
);
QueryWrapper
<
AppointmentOrderEntity
>
wrapper
=
new
QueryWrapper
<>();
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
id
),
"id"
,
id
);
wrapper
.
le
(
StringUtils
.
isNotBlank
(
flag
)
&&
"Y"
.
equals
(
flag
),
"status"
,
2
);
wrapper
.
ge
(
StringUtils
.
isNotBlank
(
flag
)
&&
"Q"
.
equals
(
flag
),
"status"
,
3
);
wrapper
.
eq
(
StringUtils
.
isNotBlank
(
status
),
"status"
,
status
);
return
wrapper
;
}
...
...
@@ -83,7 +90,8 @@ public class AppointmentOrderServiceImpl extends CrudServiceImpl<AppointmentOrde
List
<
AppointmentOrderEntity
>
appointmentOrders
=
baseDao
.
selectList
(
new
QueryWrapper
<
AppointmentOrderEntity
>()
.
eq
(
StringUtils
.
isNotBlank
(
phone
),
"appointment_phone"
,
phone
)
.
eq
(
StringUtils
.
isNotBlank
(
idCard
),
"appointment_id_card"
,
idCard
)
.
eq
(
"status"
,
"1"
).
like
(
"appointment_time"
,
now
));
.
eq
(
"status"
,
Constant
.
ReservationStatus
.
RESERVATION
.
getValue
())
.
like
(
"appointment_time"
,
now
));
if
(
appointmentOrders
.
size
()==
0
){
return
null
;
...
...
@@ -148,7 +156,7 @@ public class AppointmentOrderServiceImpl extends CrudServiceImpl<AppointmentOrde
public
YynumberDTO
findByYuNumber
(
String
sPaperNumber
)
{
//调用取号机接口,。
// String url = "http://IP:8223/smartqueue/getpaperwait?sPaperNumber=" +sPaperNumber;
String
url
=
"http://IP
:8223/smartqueue/getpaperwait?sPaperNumber="
+
sPaperNumber
;
// String url = "http://192.168.1.97
:8223/smartqueue/getpaperwait?sPaperNumber=" +sPaperNumber;
// String s = HttpRequestUtil.sendGetAndRetrieveContent(url);
String
s
=
"{\"nStatus\":1,\"sMsg\":\"号码已被呼叫\",\"nWait\":0,\"sCallTime\":\"2021-03-08 16:27:09\",\"sRegTime\":\"2021-03-08 16:26:55\",\"sQueueName\":\"不动产档案查询\",\"listWin\":[\"38号窗口\",\"39号窗口\",\"40号窗口\",\"41号窗口\",\"42号窗口\",\"43号窗口\"]}"
;
YynumberDTO
yynumberDTO
=
JSONObject
.
parseObject
(
s
,
YynumberDTO
.
class
);
...
...
hmit-api/src/main/resources/application-dev.yml
View file @
ee346a54
...
...
@@ -4,7 +4,7 @@ spring:
# driver-class-name: com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.jdbc.Driver
# url: jdbc:mysql://112.51.130.215:3306/security_enterprise?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
url
:
jdbc:mysql://sh-cdb-jsrwe2i2.sql.tencentcdb.com:60548/bl_appointment?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
url
:
jdbc:mysql://sh-cdb-jsrwe2i2.sql.tencentcdb.com:60548/bl_appointment?autoReconnect=true&useUnicode=true&characterEncoding=utf8&
serverTimezone=Asia/Shanghai&
zeroDateTimeBehavior=convertToNull&useSSL=false
username
:
root
password
:
Hmit@2020
initial-size
:
10
...
...
hmit-api/target/classes/META-INF/hmit-api.kotlin_module
deleted
100644 → 0
View file @
31a39f1b
File deleted
hmit-common/src/main/java/io/hmit/common/constant/Constant.java
View file @
ee346a54
...
...
@@ -93,12 +93,12 @@ public interface Constant {
String
MAIL_CONFIG_KEY
=
"MAIL_CONFIG_KEY"
;
/**
*
邮件配置KEY
*
预约时间--上午截止时间
*/
String
AM_END_TIME
=
"11:30"
;
/**
*
邮件配置KEY
*
预约时间--下午开始时间
*/
String
PM_START_TIME
=
"13:30"
;
...
...
@@ -189,4 +189,46 @@ public interface Constant {
}
}
/**
* 预约状态
*/
enum
ReservationStatus
{
/**
* 已预约
*/
RESERVATION
(
1
,
"已预约"
),
/**
* 预约已取消
*/
CANCEL
(
2
,
"预约已取消"
),
/**
* 已取号
*/
GET_NUM
(
3
,
"已取号"
),
/**
* 消除无效号码
*/
ELIMINATE_INVALID_NUM
(
4
,
"消除无效号码"
),
/**
* 爽约/失约
*/
BREAK_APPOINTMENT
(
0
,
"爽约"
);
private
int
value
;
private
String
msg
;
ReservationStatus
(
int
value
,
String
msg
)
{
this
.
value
=
value
;
this
.
msg
=
msg
;
}
public
int
getValue
()
{
return
value
;
}
public
String
getMsg
()
{
return
msg
;
}
}
}
hmit-common/src/main/java/io/hmit/common/entity/BaseEntity.java
View file @
ee346a54
...
...
@@ -31,4 +31,4 @@ public abstract class BaseEntity implements Serializable {
*/
@TableField
(
fill
=
FieldFill
.
INSERT
)
private
Date
createDate
;
}
\ No newline at end of file
}
hmit-common/src/main/java/io/hmit/common/utils/DateUtils.java
View file @
ee346a54
...
...
@@ -8,10 +8,7 @@ import org.joda.time.format.DateTimeFormatter;
import
java.text.ParseException
;
import
java.text.SimpleDateFormat
;
import
java.util.ArrayList
;
import
java.util.Calendar
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.*
;
/**
* 日期处理
...
...
@@ -24,6 +21,10 @@ public class DateUtils {
* 时间格式(yyyy-MM-dd)
*/
public
final
static
String
DATE_PATTERN
=
"yyyy-MM-dd"
;
/**
* 时间格式(HH:mm)
*/
public
final
static
String
HOUR_PATTERN
=
"HH:mm"
;
/**
* 时间格式(yyyy-MM-dd HH:mm:ss)
*/
...
...
@@ -267,4 +268,32 @@ public class DateUtils {
return
timeList
;
}
/**
* 将预约时间格式拆分,比较时间大小并返回
*
* @param times 开始时间 传入的时间格式:2021-02-02 08:30-09:00
* @return 当前时间是否大于传入的时间
* @throws ParseException
*/
public
static
boolean
compareTime
(
String
times
)
throws
ParseException
{
String
[]
time
=
times
.
split
(
" "
);
String
now
=
format
(
new
Date
());
if
(
now
.
compareTo
(
time
[
0
])>
0
){
System
.
out
.
println
(
"当前时间:"
+
now
+
" > 传入时间:"
+
time
[
0
]);
return
true
;
}
if
(
now
.
compareTo
(
time
[
0
])
==
0
){
String
hour
=
format
(
new
Date
(),
HOUR_PATTERN
);
String
[]
hours
=
time
[
1
].
split
(
"-"
);
if
(
hour
.
compareTo
(
hours
[
1
])
>
0
){
System
.
out
.
println
(
"当前小时:"
+
hour
+
" > 传入小时:"
+
hours
[
1
]);
}
return
true
;
}
return
false
;
}
}
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