You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
539 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SchedulingSystem.EntityClass
{
public class Cus_HZVIPLB
{
public int ID { get; set; }
/// <summary>
/// 患者姓名
/// </summary>
public string HZXM { get; set; }
/// <summary>
/// 诊疗卡号
/// </summary>
public string ZLKH { get; set; }
/// <summary>
/// 住院号
/// </summary>
public string ZYH { get; set; }
}
}