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.

67 lines
1.7 KiB

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
{
/// <summary>
/// 体检中心ID
/// </summary>
public Guid OrganizationUnitId { get; set; }
/// <summary>
/// 卡类型
/// </summary>
public Guid CardTypeId { get; set; }
/// <summary>
/// 卡号
/// </summary>
public string CardNo { get; set; }
public string? CardPassword { get; set; }
/// <summary>
/// 折扣
/// </summary>
public int Discount { get; set; }
/// <summary>
/// 有效期
/// </summary>
public string ExpiryDate { get; set; }
/// <summary>
/// 领用者
/// </summary>
public string CustomerName { get; set; }
/// <summary>
/// 身份证号
/// </summary>
public string IdNo { get; set; }
/// <summary>
/// 电话
/// </summary>
public string? Telephone { get; set; }
/// <summary>
/// 手机
/// </summary>
public string? MobileTelephone { get; set; }
/// <summary>
/// 使用标志(1、启用 0、j禁用 )
/// </summary>
public char IsActive { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? Remark { get; set; }
///// <summary>
///// 会员卡余额
///// </summary>
//public decimal CardBalance { get; set; }
}
}