package viewmodel // Role Member Info View data models type RoleMemberInfo struct { RmId int64 `form:"rmId" xorm:"'rm_id' bigint not null pk comment('PK ID') " ` RoleId int64 `form:"roleId" xorm:"'role_id' bigint comment('角色D') " ` RoleName string `form:"roleName" xorm:"'role_name' varchar(127) comment('角色名称') " ` AccountId int64 `form:"accountId" xorm:"'account_id' bigint comment('帐号ID') " ` AccountName string `form:"accountId" xorm:"'account_id' varchar(127) comment('帐号ID') " ` }