| | |
| | | package com.ltkj.system.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ltkj.common.annotation.Excel; |
| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | |
| | | @Excel(name = "患者姓名") |
| | | private String hzxm; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @Excel(name = "体检号") |
| | | private String tjNum; |
| | | |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @Excel(name = "就诊号") |
| | | private String cardId; |
| | | |
| | | |
| | | @Excel(name = "打印类型") |
| | | private String dylx; |
| | | |
| | | /** |
| | |
| | | private Long dycs; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "打印时间") |
| | | private Date dysj; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField(exist = false) |
| | | private String beginTime; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField(exist = false) |
| | | private String endTime; |
| | | |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |