CxRes.cs 486 B

1234567891011121314151617181920
  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 DW5S.Entity
  9. {
  10. [Table("CxRes")]
  11. public class CxRes: BaseEntityLong
  12. {
  13. [Display(Name = "信号时刻")]
  14. public DateTime SigTime { get; set; }
  15. [Display(Name = "测向方向值")]
  16. public double Fx { get; set; }
  17. }
  18. }