From 6edba268da4799fa3ebea904dfb21e6bef88ee6d Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期四, 11 三月 2021 11:24:07 +0800
Subject: [PATCH] fix(bug修复): 员工信息列表排序

---
 febs-common/febs-common-core/src/main/java/cc/mrbird/febs/common/core/entity/system/Position.java |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/febs-common/febs-common-core/src/main/java/cc/mrbird/febs/common/core/entity/system/Position.java b/febs-common/febs-common-core/src/main/java/cc/mrbird/febs/common/core/entity/system/Position.java
index 101ceea..e550d75 100644
--- a/febs-common/febs-common-core/src/main/java/cc/mrbird/febs/common/core/entity/system/Position.java
+++ b/febs-common/febs-common-core/src/main/java/cc/mrbird/febs/common/core/entity/system/Position.java
@@ -32,7 +32,7 @@
 
             @FieldInfo(name = "positionId",type = "varchar",explain = "岗位Id")
             @TableId(value = "positionId")
-            private String positionId;
+            private Long positionId=0L;
 
             @FieldInfo(name = "positionName",type = "varchar",explain = "岗位名称")
             @TableField("positionName")
@@ -72,9 +72,8 @@
             @TableField("delFlag")
             private Integer delFlag=0;
 
-            @FieldInfo(name = "version",type = "int",explain = "记录版本号,用来进行乐观锁控制")
             @TableField("version")
             @Version
             private Integer version=0;
 
-}
\ No newline at end of file
+}

--
Gitblit v1.8.0