using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Peis.CardRegisters
{
public class CreateCardRegisterDto
{
///
/// 体检中心ID
///
public Guid OrganizationUnitId { 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; }
///
/// 使用标志(1、启用 0、j禁用 )
///
public char IsActive { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
/////
///// 会员卡余额
/////
//public decimal CardBalance { get; set; }
}
}