12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package thyyxxk.webserver.entity.executeItem;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @Description:
- * @Author:lihong
- * @Date: 2023/11/6
- */
- @Data
- public class YzChangeData {
- private String bedNo;
- private String name;
- private String inpatientNo;
- //医嘱名称
- private String actOrderName;
- private String dose;
- private String supplyName;
- private BigDecimal drugQuan;
- //频率
- private String frequCode;
- @DateTimeFormat(pattern = "MM/dd HH:mm")
- private Date startTime;
- @DateTimeFormat(pattern = "MM/dd HH:mm")
- private Date endTime;
- //医生姓名
- private String physicianName;
- private String printOrderChange;
- private String printOrderChangeEnd;
- //医嘱号
- private BigDecimal actOrderNo;
- private String executer1;
- private String executer2;
- //执行人
- private String execId;
- //执行时间
- @DateTimeFormat(pattern = "MM/dd HH:mm")
- private Date execTime;
- private String selfBuy;
- @DateTimeFormat(pattern = "MM/dd HH:mm")
- private Date orderTime;
- //0 医嘱 1 撤销医嘱
- private String orderFlag;
- }
|