DemFireInspect.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. /**
  10. * <p>
  11. * 消防检查
  12. * </p>
  13. *
  14. * @author JCB
  15. * @since 2022-11-24
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. public class DemFireInspect implements Serializable {
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 主键ID
  23. */
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 所属单位ID
  28. */
  29. private String companyId;
  30. /**
  31. * 检查人员ID
  32. */
  33. private Integer personId;
  34. /**
  35. * 计划生成时间
  36. */
  37. private LocalDateTime planTime;
  38. /**
  39. * 检查结果
  40. */
  41. private String inspectResult;
  42. /**
  43. * 创建人
  44. */
  45. private String creator;
  46. /**
  47. * 创建时间
  48. */
  49. private LocalDateTime createTime;
  50. /**
  51. * 检查员名称
  52. */
  53. @TableField(exist = false)
  54. private String personName;
  55. /**
  56. * 检查员职位
  57. */
  58. @TableField(exist = false)
  59. private String personPosition;
  60. /**
  61. * 联系方式
  62. */
  63. @TableField(exist = false)
  64. private String linkPhone;
  65. }