NewGaoKaoApi/New_College.Model/Models/Test_CycleTimeInfo.cs

29 lines
571 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class Test_CycleTimeInfo : EntityModel
{
/// <summary>
/// Vip卡类型
/// </summary>
public int VipCardTypeId { get; set; }
/// <summary>
/// 测评分类Id
/// </summary>
public int CategoryId { get; set; }
/// <summary>
/// 周期名称
/// </summary>
public string CycleName { get; set; }
public int IsOpen { get; set; } = 1;
}
}