using System; namespace Admin.NET.Application { /// /// 量表类型表输出参数 /// public class BusScaleOutput { /// /// 量表类型名称 /// public string Name { get; set; } /// /// 单选多选 /// public int QuestionsType { get; set; } /// /// 量表简介 /// public string Summary { get; set; } public int Status { get; set; } /// /// 量表海报 /// public string Pic { get; set; } /// /// 量表小图 /// public string MinImg { get; set; } /// /// Sort排序 /// public int Sort { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// 是否免费 /// public bool IsFree { get; set; } = true; } }