123456789101112131415161718192021 |
- 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; }
- /// <summary>
- /// 检测方式
- /// </summary>
- public EnumDetectionWay DetectionWay { get; set; }
- }
- }
|