using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class V_VipCardInfo : RootEntity { /// /// 账号 key /// public string Code { get; set; } public string Pwd { get; set; } /// /// 是否一绑定 /// public int IsBind { get; set; } /// /// 天数 /// public int Day { get; set; } public DateTime EndTime { get; set; } /// /// 金额 /// public decimal Money { get; set; } /// /// 卡类型Id /// public int CardTypeId { get; set; } /// /// 卡类型 /// public string CardTypeName { get; set; } } }