ScratchWords.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package cn.cslg.pas.domain;
  2. import cn.cslg.pas.common.model.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * <p>
  9. * 管理员表
  10. * </p>
  11. *
  12. * @author 王岩
  13. * @since 2022-03-25
  14. */
  15. @Data
  16. @TableName("scratch_words")
  17. /*数据库中的表对应的类
  18. */
  19. public class ScratchWords extends BaseEntity<ScratchWords> {
  20. /**
  21. * 专利号
  22. */
  23. @TableField("patent_no")
  24. private Integer patentNo;
  25. /**
  26. *
  27. */
  28. @TableField("position")
  29. private String position;
  30. /**
  31. *
  32. */
  33. @TableField("content")
  34. private String content;
  35. /**
  36. *
  37. */
  38. @TableField("scratch_type")
  39. private String scratchType;
  40. @TableField("scratch_field")
  41. private String scratchField;
  42. /**
  43. *
  44. */
  45. @TableField("scratch_color")
  46. private String scratchColor;
  47. /**
  48. * 标引备注
  49. */
  50. @TableField("remark")
  51. private String remark;
  52. /**
  53. * 创建人
  54. */
  55. @TableField("create_id")
  56. private Integer createId;
  57. /**
  58. * 报告id
  59. */
  60. @TableField("report_id")
  61. private Integer reportId;
  62. /**
  63. * 租户id
  64. */
  65. @TableField("tenant_id")
  66. private Integer tenantId;
  67. /**
  68. * 专题库id
  69. */
  70. @TableField("project_id")
  71. private Integer projectId;
  72. /**
  73. * 公开类型 0私有1公有
  74. */
  75. @TableField("permission_type")
  76. private Integer permissionType;
  77. /**
  78. * 公开范围类型(0全部1本专题库2本报告)
  79. */
  80. @TableField("range_type")
  81. private Integer rangeType;
  82. }