修改危急值模块功能
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run
This commit is contained in:
parent
3148c3a0d6
commit
b7202c54f5
@ -44,7 +44,7 @@ public class WarningSaveReqVO {
|
|||||||
private String dealDoctor;
|
private String dealDoctor;
|
||||||
|
|
||||||
@Schema(description = "确认时间")
|
@Schema(description = "确认时间")
|
||||||
private LocalDateTime checkDateTime;
|
private String checkDateTime;
|
||||||
|
|
||||||
@Schema(description = "备注", example = "你说的对")
|
@Schema(description = "备注", example = "你说的对")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.warning.vo;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
@Data
|
||||||
|
public class WarningSaveUpdateVO {
|
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "26575")
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
|
||||||
|
@Schema(description = "危急值接收医生")
|
||||||
|
private String receiveDoctor;
|
||||||
|
|
||||||
|
@Schema(description = "处理医生")
|
||||||
|
private String dealDoctor;
|
||||||
|
|
||||||
|
@Schema(description = "确认时间")
|
||||||
|
private String checkDateTime;
|
||||||
|
|
||||||
|
@Schema(description = "备注", example = "你说的对")
|
||||||
|
private String readremark;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user