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 class AutoVipInfoQuery
{
///
/// vip卡类型id
///
public int VipCardTypeId { get; set; }
///
/// 头部
///
public string Head { get; set; }
///
/// 长度
///
public int Length { get; set; }
///
/// 数量
///
public int Num { get; set; }
}
}