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; namespace XdCxRhDW.Entity { [Table("TaskDetectionWay")] public class TaskDetectionWay : BaseEntity { public long TaskId { get; set; } /// /// 检测方式 /// public EnumDetectionWay DetectionWay { get; set; } } }