瀏覽代碼

初始化

wangchuanjin 2 年之前
父節點
當前提交
eac08caf49
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      identity/identity.go

+ 1 - 1
identity/identity.go

@@ -7,6 +7,7 @@ import (
 )
 
 type Identity struct {
+	Name         string //名称
 	PersonId     int64  //自然人id
 	UserName     string //用户昵称
 	AccountId    int64  //账户id
@@ -14,7 +15,6 @@ type Identity struct {
 	PositionId   int64  //职位id
 	PositionType int64  //职位类型
 	EntId        int64  //企业id
-	EntName      string //企业名称
 	EntUserId    int64  //企业员工id
 	EntUserName  string //企业员工姓名
 }