using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 科目简要输出参数 /// public class CourseLiteOutput { /// /// 主键 /// [Required] public short Id { get; set; } /// /// 名称 /// [Required] public string Name { get; set; } /// /// 简称 /// [Required] public string ShortName { get; set; } /// /// 别称 /// public string NickName { get; set; } /// /// 状态 /// [Required] public CommonStatus Status { get; set; } } /// /// 科目完整输出参数 /// public class CourseOutput : DEntityOutput { /// /// 名称 /// [Required] public string Name { get; set; } /// /// 简称 /// [Required] public string ShortName { get; set; } /// /// 别称 /// public string NickName { get; set; } /// /// 备注 /// public string Remark { get; set; } }