//���һ������
 public static ActorData getActorData(string id, string groupid, ActorType type, ActorPro pro)
 {
     ActorData data = new ActorData(id);
     data.GroupID = groupid;
     data.ActorType = type;
     data.ActorPro = pro;
     return data;
 }
        //获得一个数据
        public static ActorData getActorData(string id, string groupid, ActorType type, ActorPro pro)
        {
            ActorData data = new ActorData(id);

            data.GroupID   = groupid;
            data.ActorType = type;
            data.ActorPro  = pro;
            return(data);
        }