using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Ewide.Application { [Table("bs_house_task_options")] [Comment("房屋巡查任务选项表")] public class BsHouseTaskOptions : Core.DEntityBase { /// /// bs_house_code主键Id /// [Comment("bs_house_code主键Id")] [MaxLength(36)] [Required] public string TaskId { get; set; } /// /// 字典类型 /// [Comment("字典类型")] [MaxLength(50)] public string DictType { get; set; } /// /// 字典code /// [Comment("字典code")] [MaxLength(50)] public string DictCode { get; set; } /// /// 字典值 /// [Comment("字典值")] [MaxLength(100)] public string DictValue { get; set; } /// /// 备注 /// [Comment("备注")] [MaxLength(500)] public string Remark { get; set; } /// /// 附件 /// [Comment("附件")] [MaxLength(2000)] public string File { get; set; } /// /// 是否选中 /// [Comment("是否选中")] public bool? Checked { get; set; } } }