Files
tj-tzhg/JJServer/jyData.cs

62 lines
2.1 KiB
C#
Raw Normal View History

2025-11-26 17:20:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JJServer
{
public class jyData
{
public string sgname { get; set; } //试管名
public string sgxx { get; set; } //试管信息 生成标签的串
public string bqxx { get; set; } //回执信息 生成回执的串
public int bqtype { get; set; } //1试管标签 2回执标签 3电子标签
public string Barcode { get; set; } //标签一维码
public string itemInfo { get; set; } //项目信息
}
public class PatientDatail
{
public int ID { get; set; } //序号
public Patient_Info PatientInfo { get; set; } //患者唯一信息
public int ItemCount { get; set; } //试管数量
public int RecpCount { get; set; } //回执数量
public List<jyData> jyDatas { get; set; }
public List<OrginData> OrginDatas { get; set; }
}
public struct OrginData //原始检验信息 各医院需自定义 传给服务做记录
{
public string PatID { get; set; }
public string PatName { get; set; }
public string PatAge { get; set; }
public string PatSex { get; set; }
public string Barcode { get; set; }
public string Tuble { get; set; }
public string ItemName { get; set; }
public string ItemCount { get; set; }
public string ItemType { get; set; }
public string DoDept { get; set; }
public string OprDept { get; set; }
public string OprTime { get; set; }
public string PrintTime { get; set; }
public string ItemStatus { get; set; }
public string ItemsDetails { get; set; }
public string PrinterDev { get; set; }
}
public struct Patient_Info
{
public string Name { get; set; }
public string Age { get; set; }
public string CardNo { get; set; }
public string Sex { get; set; }
public string BedNo { get; set; }
public string Memo { get; set; }
}
}