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