18 lines
378 B
C#
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; }
|
|
}
|
|
}
|