NewGaoKaoApi/New_College.Model/ViewModels/Query/VipCardQuery.cs

51 lines
1016 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class VipCardQuery: BasePageRequest
{
public int CustomerId { get; set; }
public string CardCode { get; set; }
public string CardPwd { get; set; }
}
public class OpenVipCardRequest
{
public int CustomerId { get; set; }
public string CardCode { get; set; }
public string CardPwd { get; set; }
public int? TenantId { get; set; }
}
public class AutoVipInfoQuery
{
/// <summary>
/// vip卡类型id
/// </summary>
public int VipCardTypeId { get; set; }
/// <summary>
/// 头部
/// </summary>
public string Head { get; set; }
/// <summary>
/// 长度
/// </summary>
public int Length { get; set; }
/// <summary>
/// 数量
/// </summary>
public int Num { get; set; }
}
}