using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.CardRegisters { public class UpdateCardRegisterDto { /// /// 体检中心ID /// public Guid MedicalCenterId { get; set; } /// /// 卡类型 /// public Guid CardTypeId { get; set; } /// /// 卡号 /// public string CardNo { get; set; } public string? CardPassword { get; set; } /// /// 折扣 /// public int Discount { get; set; } /// /// 有效期 /// public string ExpiryDate { get; set; } /// /// 领用者 /// public string CustomerName { get; set; } /// /// 身份证号 /// public string IdNo { get; set; } /// /// 电话 /// public string? Telephone { get; set; } /// /// 手机 /// public string? MobileTelephone { get; set; } /// /// 使用标志(Y、启用 N、j禁用 ) /// public char IsActive { get; set; } /// /// 备注 /// public string? Remark { get; set; } } }