package cn.lihu.jh.module.ecg.dal.dataobject.call;
|
|
import lombok.*;
|
|
import java.time.LocalDate;
|
import java.util.*;
|
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
import com.baomidou.mybatisplus.annotation.*;
|
import cn.lihu.jh.framework.mybatis.core.dataobject.BaseDO;
|
|
/**
|
* 叫号 DO
|
*
|
* @author 马剑波
|
*/
|
@TableName("call_patient")
|
@KeySequence("call_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class CallDO extends BaseDO {
|
|
/**
|
* id
|
*/
|
@TableId
|
private Integer id;
|
/**
|
* 患者编号
|
*/
|
private String patId;
|
/**
|
* 患者姓名
|
*/
|
private String patName;
|
/**
|
* 患者性别
|
*/
|
private Integer patGender;
|
/**
|
* 预约日期
|
*/
|
private LocalDate bookDate;
|
/**
|
* 排队序号
|
*/
|
private Integer seqNum;
|
/**
|
* 过号标记
|
*/
|
private Integer passed;
|
/**
|
* 预约过期标记
|
*/
|
private Integer expired;
|
/**
|
* 叫号状态 0 未播 1 已播
|
*/
|
private Integer called;
|
/**
|
* 插队标记
|
*/
|
private Integer jumpFlag;
|
/**
|
* 叫号类型
|
*/
|
private Integer callType;
|
/**
|
* 诊室编号
|
*/
|
private Long roomId;
|
/**
|
* 诊室名称
|
*/
|
private String roomName;
|
/**
|
* 诊疗床编号
|
*/
|
private String bedNo;
|
|
}
|