MsSuspected.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package com.bofeng.entity;
  2. import com.baomidou.mybatisplus.annotations.TableField;
  3. import com.baomidou.mybatisplus.annotations.TableId;
  4. import com.baomidou.mybatisplus.annotations.TableName;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import org.joda.time.DateTime;
  8. import java.math.BigDecimal;
  9. /**
  10. * @Author: xielianghe
  11. * @Date: 2020/2/4 14:54
  12. */
  13. @Getter
  14. @Setter
  15. @TableName("ms_suspected")
  16. public class MsSuspected {
  17. @TableId("suspected_id")
  18. private Long suspectedId;
  19. @TableField("report_id")
  20. private Long reportId;
  21. @TableField("user_name")
  22. private String userName;
  23. @TableField("grender")
  24. private Integer grender;
  25. @TableField("age")
  26. private Integer age;
  27. @TableField("family_status")
  28. private Integer familyStatus;
  29. @TableField("status_desp")
  30. private String statusDesp;
  31. @TableField("medical")
  32. private Integer medical;
  33. @TableField("temperature")
  34. private BigDecimal temperature;
  35. @TableField("cough")
  36. private Integer cough;
  37. @TableField("muscle")
  38. private Integer muscle;
  39. @TableField("dyspnea")
  40. private Integer dyspnea;
  41. @TableField("chest")
  42. private Integer chest;
  43. @TableField("fatigue")
  44. private Integer fatigue;
  45. @TableField("diarrhea")
  46. private Integer diarrhea;
  47. @TableField("diarrhea_num")
  48. private Integer diarrheaNum;
  49. @TableField("others")
  50. private String others;
  51. @TableField("user_create")
  52. private Long userCreate;
  53. @TableField("time_create")
  54. private DateTime timeCreate;
  55. @TableField("user_update")
  56. private Long userUpdate;
  57. @TableField("time_update")
  58. private DateTime timeUpdate;
  59. }