DicomServer/Desktop/Worklist SCP/contrastDataModel.cs
2024-12-13 10:06:20 +08:00

18 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Worklist_SCP
{
/// <summary>
/// 将 patientID 和 orgid 提交到 mysql的对比表里
/// </summary>
public class contrastDataModel
{
public string regid { get; set; }
public string orgid { get; set; }
}
}