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