You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
2 years ago
|
package com.ynxbd.common.bean.report;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
/**
|
||
|
* @Author wsq
|
||
|
* @Date 2021/3/10 12:21
|
||
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
||
|
*/
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class CheckReport {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
private String id;
|
||
|
private String name;
|
||
|
private String type;
|
||
|
private String state;
|
||
|
private String mzNum;
|
||
|
private String zyNum;
|
||
|
private String bedNum;
|
||
|
private String YLDY;
|
||
|
private String applicationFrom;
|
||
|
private String applyDeptCode;
|
||
|
private String applyDeptName;
|
||
|
private String applyDoctCode;
|
||
|
private String applyDoctName;
|
||
|
private String applyDate;
|
||
|
private String execDeptCode;
|
||
|
private String execDeptName;
|
||
|
private String execDate;
|
||
|
private String scanRoom;
|
||
|
private String scanWay;
|
||
|
private String bodyPart;
|
||
|
private String description;
|
||
|
private String conclusion;
|
||
|
private String note;
|
||
|
private String diagnose;
|
||
|
private String reportDoctName;
|
||
|
private String reportDate;
|
||
|
}
|