Update to dms control phase1.

This commit is contained in:
sunwen
2023-08-21 14:22:41 +08:00
parent d1dc5df680
commit 20fb814608
59 changed files with 2538 additions and 904 deletions

View File

@@ -0,0 +1,20 @@
#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 ;
};
#endif // __SCAN_H__