UserInfo uinfo = {0};
    uinfo.userID = 5555;
    strcpy(uinfo.userName, "UserHost5555");
    strcpy(uinfo.userPwd, "123456");
    i->addUser_(uinfo);

    ActorInfo ainfo = {0};
    for (int x = 28001; x <= 30000; ++x)
    {
        ainfo.id = x;
        sprintf_s(ainfo.name, "Act%d", x);
        ainfo.prof = Role_DS;
        ainfo.sex = DB::sex::MAN;
        i->addActor_(5555, ainfo);
    }

 

相关文章:

  • 2021-11-13
  • 2021-11-30
  • 2021-12-26
  • 2021-08-10
  • 2022-12-23
  • 2022-01-01
  • 2021-06-02
  • 2021-11-18
猜你喜欢
  • 2021-12-15
  • 2022-01-12
  • 2021-12-14
  • 2022-01-03
  • 2021-12-27
相关资源
相似解决方案