TaskDetectionWay.cs 509 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XdCxRhDW.Entity
  9. {
  10. [Table("TaskDetectionWay")]
  11. public class TaskDetectionWay : BaseEntity
  12. {
  13. public long TaskId { get; set; }
  14. /// <summary>
  15. /// 检测方式
  16. /// </summary>
  17. public EnumDetectionWay DetectionWay { get; set; }
  18. }
  19. }