using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace AX.FireTrainingSys.Models { /// /// 消防控制室。 /// public class FireControlRoom { /// /// 课件Id。 /// [MaxLength(24)] public string CoursewareId { get; set; } /// /// 编号。 /// [MaxLength(32)] public string Id { get; set; } /// /// 内容。 /// public string Content { get; set; } } }