| | |
| | | package com.ruoyi.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | private String fileName; |
| | | |
| | | /** |
| | | * 病的类型 |
| | | */ |
| | |
| | | */ |
| | | @Excel(name = "持续时间") |
| | | private String duration; |
| | | |
| | | /** |
| | | * 处方 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String prescription; |
| | | |
| | | /** |
| | | * 中医 |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date createTime; |
| | | |
| | | private Long familyId; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer ownData; |
| | | |
| | | private Long shareId; |
| | | } |