package cn.lihu.jh.module.ecg.dal.dataobject.checktype;
|
|
import lombok.*;
|
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 majianbo
|
*/
|
@TableName("check_type")
|
@KeySequence("check_type_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class CheckTypeDO extends BaseDO {
|
|
/**
|
* id
|
*/
|
@TableId
|
private Integer id;
|
/**
|
* 检查类型名
|
*/
|
private String name;
|
/**
|
* 检查类型值
|
*/
|
private Integer value;
|
/**
|
* 允许准备中人数
|
*/
|
private Integer readyNum;
|
/**
|
* 需要设备领用
|
*/
|
private Integer needDevReady;
|
/**
|
* 叫号列
|
*/
|
private Integer callingColumn;
|
|
}
|