rcom10002 / ccgclient

Automatically exported from code.google.com/p/ccgclient
0 stars 1 forks source link

玩家分布图与可分配的额度 #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
根据玩家关系路径,以树型图罗列出所有玩家

Original issue reported on code.google.com by rcom10002 on 30 Jul 2009 at 3:54

GoogleCodeExporter commented 9 years ago
根据组用户与普通用户间的关系,以树形结构显示他们的关��
�

Original comment by rcom10002 on 27 Aug 2009 at 1:33

GoogleCodeExporter commented 9 years ago
select replace(rls_path, concat("!", user_id), "") as path_key, 
       concat("root!", rls_path) as path_value 
  from player_profile 
 order by rls_path

RESULT:
path_key    path_value
Administrator   root!Administrator
user1   root!user1
user2   root!user2
user3   root!user3
user3   root!user3!user33
user4   root!user4
user4   root!user4!user44
user5   root!user5
user6   root!user6

Original comment by rcom10002 on 27 Aug 2009 at 2:39

GoogleCodeExporter commented 9 years ago

Original comment by rcom10002 on 31 Aug 2009 at 9:00

GoogleCodeExporter commented 9 years ago
可分配的额度

创建子用户时,当前组用户下所有的子用户的积分总和必须��
�于等于当前组用户可分配的额度

Original comment by rcom10002 on 31 Aug 2009 at 9:03