2023-08-21 14:22:41 +08:00
|
|
|
#ifndef __SCAN_H__
|
|
|
|
|
#define __SCAN_H__
|
|
|
|
|
#include <string>
|
|
|
|
|
struct Scan{
|
|
|
|
|
std::string ScanID;
|
|
|
|
|
std::string PatientID;
|
|
|
|
|
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;
|
|
|
|
|
int Port = 0;;
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-21 14:22:41 +08:00
|
|
|
#endif // __SCAN_H__
|