Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
huang.tao
/
jmai-platform
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d9ecd7ca
authored
Jan 06, 2026
by
zhu.zewen
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
新增交接班相关接口
parent
14f65804
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
jmai-physic/src/main/java/com/jmai/physic/config/HandoverCancelProperties.java
jmai-physic/src/main/java/com/jmai/physic/dto/PhysicBillHandoverCancelReq.java
jmai-physic/src/main/java/com/jmai/physic/config/HandoverCancelProperties.java
0 → 100644
View file @
d9ecd7ca
package
com
.
jmai
.
physic
.
config
;
import
lombok.Data
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.stereotype.Component
;
/**
* 交接单取消配置
*/
@Data
@Component
@ConfigurationProperties
(
prefix
=
"handover.cancel"
)
public
class
HandoverCancelProperties
{
/**
* 是否允许交班人取消(默认false)
*/
private
Boolean
allowTransferor
=
false
;
/**
* 是否允许接班人取消(默认false)
*/
private
Boolean
allowReceiver
=
false
;
/**
* 允许取消的天数限制(默认3天,从0时开始,含当天)
*/
private
Integer
dayLimit
=
3
;
/**
* 是否允许取消已完成的交接班(默认false)
*/
private
Boolean
allowCancelCompleted
=
false
;
}
jmai-physic/src/main/java/com/jmai/physic/dto/PhysicBillHandoverCancelReq.java
0 → 100644
View file @
d9ecd7ca
package
com
.
jmai
.
physic
.
dto
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
@ApiModel
(
description
=
"药品专账-取消交接单请求"
)
public
class
PhysicBillHandoverCancelReq
{
@ApiModelProperty
(
value
=
"交接单ID"
,
required
=
true
)
private
Long
handoverId
;
@ApiModelProperty
(
value
=
"取消原因"
)
private
String
reason
;
}
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