using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// Vip卡生成 /// [SugarTable(null, "Vip卡生成")] [SysTable] public class BusVipCardInfo : EntityTenant { /// ///卡号 /// [SugarColumn(ColumnDescription = "卡号", IsNullable = true)] public string Code { get; set; } /// /// 卡密码 /// [SugarColumn(ColumnDescription = "卡密码", IsNullable = true)] public string Pwd { get; set; } /// /// 是否一绑定0否1是 /// [SugarColumn(ColumnDescription = "是否绑定")] public int IsBind { get; set; } /// /// 卡号有效时间 /// [SugarColumn(ColumnDescription = "卡号有效时间")] public int Day { get; set; } /// /// 到期时间 /// [SugarColumn(ColumnDescription = "到期时间")] public DateTime EndTime { get; set; } /// /// 金额 /// [SugarColumn(ColumnDescription = "金额")] public decimal Money { get; set; } /// /// 卡类型Id /// [SugarColumn(ColumnDescription = "卡类型Id")] public long CardTypeId { get; set; } } }