AssoGroupFeature.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package cn.cslg.pas.domain.business;
  2. import cn.cslg.pas.domain.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. @Data
  7. @TableName("asso_group_feature")
  8. public class AssoGroupFeature extends BaseEntity<AssoGroupFeature> {
  9. @TableField(value = "feature_order")
  10. private Integer featureOrder;
  11. //0原始 1拆分过
  12. @TableField(value = "feature_gen")
  13. private Integer featureGen;
  14. //特征id
  15. @TableField(value = "feature_id")
  16. private Integer featureId;
  17. //特征id
  18. @TableField(value = "feature_pre_id")
  19. private Integer featurePreId;
  20. @TableField(value = "group_id")
  21. private Integer groupId;
  22. @TableField(value = "operate_mode")
  23. private Integer operateMode;
  24. /**
  25. * 无效理由详情1
  26. */
  27. @TableField(value = "invalid_reason_detail1")
  28. private String invalidReasonDetail1;
  29. /**
  30. * 无效理由详情2
  31. */
  32. @TableField(value = "invalid_reason_detail2")
  33. private String invalidReasonDetail2;
  34. /**
  35. * 陈述意见
  36. */
  37. @TableField(value = "present_opinions1")
  38. private String presentOpinions1;
  39. /**
  40. * 第二次陈述意见
  41. */
  42. @TableField(value = "present_opinions2")
  43. private String presentOpinions2;
  44. /**
  45. * 是否有第一次陈述意见
  46. */
  47. @TableField(value = "if_present_opinion1")
  48. private Boolean ifPresentOpinions1;
  49. /**
  50. * 是否有第二次陈述意见
  51. */
  52. @TableField(value = "if_present_opinion2")
  53. private Boolean ifPresentOpinions2;
  54. /**
  55. * 复审委意见
  56. */
  57. @TableField(value = "rb_opinions")
  58. private String rbOpinions;
  59. /**
  60. * 复审委意见要点提炼
  61. */
  62. @TableField(value = "rb_decision_key")
  63. private String rbDecisionKey;
  64. //特征修改说明
  65. @TableField(value = "common")
  66. private String common;
  67. /**
  68. *复审委概括
  69. */
  70. @TableField(value = "rb_summary")
  71. private String rbSummary;
  72. /**
  73. * 一审起诉人意见
  74. */
  75. @TableField(value = "prosecutor_opinions1")
  76. private String prosecutorOpinions1;
  77. /**
  78. * 一审被诉人意见
  79. */
  80. @TableField(value = "respondent_opinions1")
  81. private String respondentOpinions1;
  82. /**
  83. * 一审第三方意见
  84. */
  85. @TableField(value = "third_opinions1")
  86. private String thirdOpinions1;
  87. /**
  88. * 一审法院意见
  89. */
  90. @TableField(value = "court_opinions1")
  91. private String courtOpinions1;
  92. /**
  93. * 二审起诉人意见
  94. */
  95. @TableField(value = "prosecutor_opinions2")
  96. private String prosecutorOpinions2;
  97. /**
  98. * 二审被诉人意见
  99. */
  100. @TableField(value = "respondent_opinions2")
  101. private String respondentOpinions2;
  102. /**
  103. * 二审第三方意见
  104. */
  105. @TableField(value = "third_opinions2")
  106. private String thirdOpinions2;
  107. /**
  108. * 二审法院意见
  109. */
  110. @TableField(value = "court_opinions2")
  111. private String courtOpinions2;
  112. }