关联用户2

This commit is contained in:
2026-05-20 16:30:24 +08:00
parent 133ea5a88b
commit 246b39ca1a
15 changed files with 254 additions and 172 deletions

View File

@@ -0,0 +1,20 @@
package com.example.defenseapplication.bean
data class FamilyMembersBean(
val id: String? = null, // ID
val parentId: String? = null, // 家长 id
val parentName: String? = null, // 家长昵称
val userId: String? = null, // 成员 id
val nickName: String? = null, // 成员昵称
val idCard: String? = null, // 身份证号
val phonenumber: String? = null, // 手机号码
val status: String? = null, // 账号状态0 正常 1 停用)
val role: String? = null, // 角色
val createTime: String? = null, // 创建时间
val inviteCode: String? = null, // 邀请码
val createDept: Int? = null, // 创建部门
val createBy: Int? = null, // 创建人
val updateBy: Int? = null, // 更新者
val updateTime: String? = null, // 更新时间
val paramskeykey: String? = null
)