From 953f592c58ab133a3630476aee74023b03b083eb Mon Sep 17 00:00:00 2001
From: mg <maokecheng@163.com>
Date: 星期二, 01 十一月 2022 09:27:40 +0800
Subject: [PATCH] 提交实体类

---
 ycl-platform/src/main/java/com/ycl/entity/cockpitManage/TeamConstruction.java |  138 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 138 insertions(+), 0 deletions(-)

diff --git a/ycl-platform/src/main/java/com/ycl/entity/cockpitManage/TeamConstruction.java b/ycl-platform/src/main/java/com/ycl/entity/cockpitManage/TeamConstruction.java
new file mode 100644
index 0000000..94f8a7e
--- /dev/null
+++ b/ycl-platform/src/main/java/com/ycl/entity/cockpitManage/TeamConstruction.java
@@ -0,0 +1,138 @@
+package com.ycl.entity.cockpitManage;
+
+import com.alibaba.excel.annotation.ExcelIgnore;
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ * <p>
+ * 闃熶紞寤鸿琛�
+ * </p>
+ *
+ * @author zhanghua
+ * @since 2022-10-31
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("ums_team_construction")
+public class TeamConstruction implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    @TableId(value = "id", type = IdType.AUTO)
+    @ExcelIgnore
+    private Long id;
+
+    /**
+     * 閮ㄩ棬鍚嶇О
+     */
+    @TableField("name")
+    @ExcelProperty(value = "閮ㄩ棬鍚嶇О", index = 0)
+    private String name;
+
+    /**
+     * 閮ㄩ棬浜烘暟
+     */
+    @TableField("people_number")
+    @ExcelProperty(value = "閮ㄩ棬浜烘暟", index = 1)
+    private Integer peopleNumber;
+
+    /**
+     * 鏈瀛﹀巻鍙婁互涓婁汉鏁�
+     */
+    @TableField("up_undergraduate_people_number")
+    @ExcelProperty(value = "鏈瀛﹀巻鍙婁互涓婁汉鏁�", index = 2)
+    private Integer upUndergraduatePeopleNumber;
+
+    /**
+     * 45宀佷互涓嬩汉鏁�
+     */
+    @TableField("under_forty_five_people_number")
+    @ExcelProperty(value = "45宀佷互涓嬩汉鏁�", index = 3)
+    private Integer underFortyFivePeopleNumber;
+
+    /**
+     * 娉曞緥鑱屼笟璧勬牸璇佷汉鏁�
+     */
+    @TableField("legal_professional_qualification_certificate_people_number")
+    @ExcelProperty(value = "娉曞緥鑱屼笟璧勬牸璇佷汉鏁�", index = 4)
+    private Integer legalProfessionalQualificationCertificatePeopleNumber;
+
+    /**
+     * 閫氭姤鏁伴噺
+     */
+    @TableField("report_number")
+    @ExcelProperty(value = "閫氭姤鏁伴噺", index = 5)
+    private Integer reportNumber;
+
+    /**
+     * 杩濈邯琛屼负鏁伴噺
+     */
+    @TableField("disciplinary_offence_number")
+    @ExcelProperty(value = "杩濈邯琛屼负鏁伴噺", index = 6)
+    private Integer disciplinaryOffenceNumber;
+
+    /**
+     * 杩濇硶鐘姜琛屼负鏁伴噺
+     */
+    @TableField("criminal_offense_number")
+    @ExcelProperty(value = "杩濇硶鐘姜琛屼负鏁伴噺", index = 7)
+    private Integer criminalOffenseNumber;
+
+    /**
+     * 姣忔湀妗堜欢鏁伴噺
+     */
+    @TableField("month_case_number")
+    @ExcelProperty(value = "姣忔湀妗堜欢鏁伴噺", index = 8)
+    private Integer monthCaseNumber;
+
+    /**
+     * 鏈秴鏃舵浠舵暟閲�
+     */
+    @TableField("no_timeout_case_number")
+    @ExcelProperty(value = "鏈秴鏃舵浠舵暟閲�", index = 9)
+    private Integer noTimeoutCaseNumber;
+
+    /**
+     * 澶嶈瘔鎴栬瘔璁兼暟閲�
+     */
+    @TableField("review_or_lawsuit_number")
+    @ExcelProperty(value = "澶嶈瘔鎴栬瘔璁兼暟閲�", index = 10)
+    private Integer reviewOrLawsuitNumber;
+
+    /**
+     * 鐘舵��(0绂佹,1鍚敤)
+     */
+    @TableField("status")
+    @ExcelIgnore
+    private Integer status;
+
+    /**
+     * 鏄惁鍒犻櫎(0鍚�,1鏄�)
+     */
+    @TableField("is_delete")
+    @ExcelIgnore
+    private Integer isDelete;
+
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    @TableField("create_time")
+    @ExcelProperty(value = "鍒涘缓鏃堕棿", index = 11)
+    private LocalDateTime createTime;
+
+    /**
+     * 鏇存柊鏃堕棿
+     */
+    @TableField("update_time")
+    @ExcelIgnore
+    private LocalDateTime updateTime;
+}
\ No newline at end of file

--
Gitblit v1.8.0