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.
139 lines
2.1 KiB
139 lines
2.1 KiB
package com.ynxbd.common.bean.xbd;
|
|
|
|
import cn.hutool.core.date.DateTime;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author 李进才
|
|
* @ClassName MRHistory
|
|
* @Description 获取预约历史
|
|
* @date 2023/05/05 13:56:00
|
|
*/
|
|
|
|
@Getter
|
|
@Setter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class MRHistory {
|
|
/**
|
|
* 病人ID
|
|
*/
|
|
private String patientID;
|
|
|
|
/**
|
|
* 病案借阅号 (-1为屏蔽此字段 查询所有此病人的记录)
|
|
*/
|
|
private int borrowNo;
|
|
|
|
/**
|
|
* 住院号
|
|
*/
|
|
private String zyNum;
|
|
|
|
/**
|
|
* 病案号
|
|
*/
|
|
private String bano;
|
|
|
|
/**
|
|
* 诊断名称
|
|
*/
|
|
private String dx;
|
|
|
|
/**
|
|
* 入院时间
|
|
*/
|
|
private String inHospTime;
|
|
|
|
/**
|
|
* 出院时间
|
|
*/
|
|
private String outHospTime;
|
|
|
|
/**
|
|
* 申请时间
|
|
*/
|
|
private String baBorrowOperDate;
|
|
|
|
/**
|
|
* 申请人
|
|
*/
|
|
private String baBorrowApplyName;
|
|
|
|
/**
|
|
* 申请电话
|
|
*/
|
|
private String baBorrowPhone;
|
|
|
|
/**
|
|
* 获取方式; 0自提 1邮寄
|
|
*/
|
|
private int baBorrowGetway;
|
|
|
|
/**
|
|
* 邮寄地址
|
|
*/
|
|
private String baBorrowAddress;
|
|
|
|
/**
|
|
* 模板名称
|
|
*/
|
|
private String baBorrowUsetoName;
|
|
|
|
/**
|
|
* 费用
|
|
*/
|
|
private String baBorrowPrintMoney;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String baBorrowNote;
|
|
|
|
/**
|
|
* 审核标志 Null未审核 true通过 false不通过
|
|
*/
|
|
private Boolean baBorrowIsApproved;
|
|
|
|
/**
|
|
* 是否打印
|
|
*/
|
|
private Boolean baBorrowIsPrint;
|
|
|
|
/**
|
|
* 是否付费
|
|
*/
|
|
private Boolean baBorrowIsPay;
|
|
|
|
/**
|
|
* 流程是否结束
|
|
*/
|
|
private Boolean baBorrowIsFinish;
|
|
|
|
/**
|
|
* 审核日期
|
|
*/
|
|
private String baBorrowApprovedDate;
|
|
|
|
/**
|
|
* 打印日期
|
|
*/
|
|
private String baBorrowPrintDate;
|
|
|
|
/**
|
|
* 付费日期
|
|
*/
|
|
private String baBorrowPayDate;
|
|
|
|
/**
|
|
* 结束日期
|
|
*/
|
|
private String baBorrowFinishDate;
|
|
|
|
|
|
}
|
|
|