D_QueryStruct
// 查询结果
typedef struct D_QueryStruct
{
int type;
D_CQI CardInfo;
D_UQI UserInfo;
}D_QS, D_pQS;
// D_CQI 结构
typedef struct D_Card_QueryInfo {
std::string type; // 类型
std::string Account; // 代理商
BOOL IsUsed; // 是否已使用
std::string RechargeTime; // 使用时间
std::string User; // 使用用户
std::string Users; // 用户分组
int MachineBindings; // 绑定机器数量
BOOL IsBan; // 是否停封
std::string BanReason; // 停封理由
std::string Notes; // 备注信息
int Points; // 剩余点数
std::string SubProperty; // 软件副属性
std::string ExpirationTime; // 到期时间
int RemainingSeconds; // 剩余时间
}D_CQI, * D_pCQI;
// D_UQI 结构
typedef struct D_User_QueryInfo {
std::string name; // 用户名
std::string Users; // 用户组
std::string ExpirationTime; // 到期时间
BOOL IsBan; // 是否停封
std::string BanReason; // 停封理由
BOOL HasExpired; // 是否到期
int RemainingTime; // 剩余时间
std::string Referrer; // 推荐人
int RemainingPoints; // 剩余点数
std::string RegistrationCard; // 注册卡
std::string Remarks; // 备注信息
std::string SubProperty; // 副属性
}D_UQI, * D_pUQI;