2023-08-21 14:22:41 +08:00
|
|
|
#ifndef __SCAN_H__
|
|
|
|
|
#define __SCAN_H__
|
|
|
|
|
#include <string>
|
|
|
|
|
struct Scan{
|
|
|
|
|
std::string ScanID;
|
2024-05-27 09:27:21 +08:00
|
|
|
std::string MPPSUID;
|
2023-08-21 14:22:41 +08:00
|
|
|
std::string ReferenceID;
|
|
|
|
|
std::string ReferencePath;
|
|
|
|
|
int Type;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct TaskQueryResult
|
|
|
|
|
{
|
|
|
|
|
std::string ScanID;
|
|
|
|
|
std::string ReconID;
|
|
|
|
|
int SeqID ;
|
|
|
|
|
bool Start ;
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-22 10:47:19 +08:00
|
|
|
struct PACSSetting
|
|
|
|
|
{
|
|
|
|
|
std::string AETitle;
|
|
|
|
|
std::string ServerAETitle;
|
|
|
|
|
std::string ServerIP;
|
2024-05-27 09:27:21 +08:00
|
|
|
int Port = 0;
|
2024-07-31 10:49:08 +08:00
|
|
|
bool StorageCommitment = false;
|
2023-08-22 10:47:19 +08:00
|
|
|
};
|
|
|
|
|
|
2024-05-28 13:27:55 +08:00
|
|
|
struct MPPSSetting
|
|
|
|
|
{
|
|
|
|
|
int On = 0;
|
|
|
|
|
std::string ServerAETitle;
|
|
|
|
|
std::string IP;
|
|
|
|
|
int Port = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2025-03-07 09:31:57 +08:00
|
|
|
struct ServerSideMessage
|
|
|
|
|
{
|
|
|
|
|
int ErrorCode = 0;
|
|
|
|
|
std::string MessageContent;
|
|
|
|
|
std::string MessageUUID;
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-21 14:22:41 +08:00
|
|
|
#endif // __SCAN_H__
|