12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.huimv.management.entity;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * 病因
- *
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-06-10 09:44:06
- */
- @Data
- @TableName("health_disease_cause")
- public class HealthDiseaseCauseEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @TableId
- private Integer id;
- /**
- * 病因名称
- */
- private String causeName;
- /**
- * 具体描述
- */
- private String description;
- /**
- * 创建时间
- */
- @TableField(fill = FieldFill.INSERT)
- private Date createTime;
- }
|