/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此Model */ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using VolPro.Entity.SystemModels; namespace VolPro.Entity.DomainModels { [Entity(TableCnName = "巡检路径",TableName = "warehouse_patrolpath",DetailTable = new Type[] { typeof(warehouse_patrolpathpoint)},DetailTableCnName = "巡检路径点位",DBServer = "ServiceDbContext")] public partial class warehouse_patrolpath:ServiceEntity { /// ///巡检路线名称 /// [Display(Name ="巡检路线名称")] [MaxLength(255)] [Column(TypeName="nvarchar(255)")] [Editable(true)] public string PatrolTitle { get; set; } /// ///巡检路线说明 /// [Display(Name ="巡检路线说明")] [MaxLength(255)] [Column(TypeName="nvarchar(255)")] [Editable(true)] public string PatrolMemo { get; set; } /// ///巡检路线ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [Key] [Display(Name ="巡检路线ID")] [Column(TypeName="int")] [Editable(true)] [Required(AllowEmptyStrings=false)] public int PatrolPathId { get; set; } /// ///巡检路线耗时(小时) /// [Display(Name ="巡检路线耗时(小时)")] [Column(TypeName="int")] [Editable(true)] public int? PatrolDuration { get; set; } [Display(Name ="巡检路径点位")] [ForeignKey("PatrolPathId")][Navigate(NavigateType.OneToMany,nameof(PatrolPathId),nameof(PatrolPathId))] public List warehouse_patrolpathpoint { get; set; } } }