You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.4 KiB
Java
92 lines
1.4 KiB
Java
package com.glxp.api.res.basic;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.glxp.api.entity.basic.BasicSkPrescribeItemEntity;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class BasicSkPrescribeResponse {
|
|
|
|
|
|
private Integer id;
|
|
/**
|
|
* 处方编码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 病人编码
|
|
*/
|
|
private String sickCode;
|
|
|
|
/**
|
|
* 住院号
|
|
*/
|
|
private String adNum;
|
|
|
|
/**
|
|
* 开方时间
|
|
*/
|
|
private LocalDateTime prescribeDate;
|
|
|
|
/**
|
|
* 开方医生
|
|
*/
|
|
private String createDr;
|
|
/**
|
|
* 处方费用
|
|
*/
|
|
private BigDecimal amount;
|
|
|
|
/**
|
|
* 就诊科室编码
|
|
*/
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 就诊科室名称
|
|
*/
|
|
private String deptName;
|
|
|
|
/**
|
|
* 诊断内容
|
|
*/
|
|
private String diagnosis;
|
|
|
|
private String remark;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createUser;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updateUser;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private LocalDateTime updateTime;
|
|
|
|
private String sickName;
|
|
|
|
|
|
/**
|
|
* 处方明细
|
|
*/
|
|
List<BasicSkPrescribeItemEntity> itemList;
|
|
|
|
}
|