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.
		
		
		
		
			
				
					
					
						
							65 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							65 lines
						
					
					
						
							1.6 KiB
						
					
					
				package com.ynxbd.common.bean.report;
 | 
						|
 | 
						|
 | 
						|
import com.alibaba.fastjson.JSONArray;
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
import java.io.Serializable;
 | 
						|
 | 
						|
/**
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2020/12/14 16:53
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class Report implements Serializable {
 | 
						|
    private static final long serialVersionUID = -500000000000000001L;
 | 
						|
 | 
						|
    private String id;
 | 
						|
    private String name;
 | 
						|
    // 报告单类型
 | 
						|
    private String type;
 | 
						|
    // 申请单状态 0:未缴费,1:已缴费未出报告,2:已缴费已出报告
 | 
						|
    private String state;
 | 
						|
    private String mzNum;
 | 
						|
    private String zyNum;
 | 
						|
    private String bedNum;
 | 
						|
    // 申请来源
 | 
						|
    private String applyFrom;
 | 
						|
    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 reportDate;
 | 
						|
    // 报告医生
 | 
						|
    private String reportDoctName;
 | 
						|
 | 
						|
    private JSONArray results;
 | 
						|
 | 
						|
}
 | 
						|
 |