Browse Source

add:添加冷链验证uuid

zoie 1 week ago
parent
commit
038047d473
1 changed files with 13 additions and 12 deletions
  1. 13 12
      User/User.go

+ 13 - 12
User/User.go

@@ -1,17 +1,18 @@
 package User
 
 type User struct {
-	Id            int
-	T_uuid        string //
-	T_power       string // 权限ID
-	T_name        string //
-	T_user        string //
-	T_pass        string //
-	T_dept        int    // 部门
-	T_dept_name   string // 部门
-	T_post        int    // 岗位
-	T_post_name   string // 岗位
-	T_State       int    //  0删除  1 正常
-	T_dept_leader int    // 部门负责人 0-否 1-是
+	Id                 int
+	T_uuid             string //
+	T_power            string // 权限ID
+	T_name             string //
+	T_user             string //
+	T_pass             string //
+	T_dept             int    // 部门
+	T_dept_name        string // 部门
+	T_post             int    // 岗位
+	T_post_name        string // 岗位
+	T_State            int    //  0删除  1 正常
+	T_dept_leader      int    // 部门负责人 0-否 1-是
+	T_verify_cold_uuid string // 关联冷链验证uuid
 
 }