提交诊断依据列表,初步诊断列表
parent
1a650a4df5
commit
ce1c2acdfa
@ -0,0 +1,41 @@
|
||||
package com.supervision.vo.ask;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class DiagnosticBasisForPrimaryResVO {
|
||||
|
||||
@ApiModelProperty("本项ID")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty("阶段,1问诊 2体格检查 3辅助检查")
|
||||
private Integer type;
|
||||
|
||||
@ApiModelProperty("身体部位")
|
||||
private String locationName;
|
||||
|
||||
@ApiModelProperty("检查类目")
|
||||
private String category;
|
||||
|
||||
@ApiModelProperty("问诊项目")
|
||||
private String item;
|
||||
|
||||
@ApiModelProperty("初步诊断名称")
|
||||
private String primaryName;
|
||||
|
||||
@ApiModelProperty("初步诊断ID")
|
||||
private String primaryId;
|
||||
|
||||
@ApiModelProperty("是否是证实诊断依据(0否1是)")
|
||||
private Integer basisConfirmFlag;
|
||||
|
||||
@ApiModelProperty("是否是鉴别依据(0否1是)")
|
||||
private Integer basisIdentificationFlag;
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.supervision.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DiagnosticBasisForPrimaryReqVO {
|
||||
|
||||
@ApiModelProperty("本项ID")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty("阶段,1问诊 2体格检查 3辅助检查")
|
||||
private Integer type;
|
||||
|
||||
@ApiModelProperty("是否是证实诊断依据(0否1是)")
|
||||
private Integer basisConfirmFlag;
|
||||
|
||||
@ApiModelProperty("是否是鉴别依据(0否1是)")
|
||||
private Integer basisIdentificationFlag;
|
||||
}
|
Loading…
Reference in New Issue