CxRes.cs 564 B

123456789101112131415161718192021
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace DW5S.Entity
  10. {
  11. [Index(nameof(SigTime), IsDescending = new[] { true })]
  12. public class CxRes: BaseEntity<long>
  13. {
  14. [Display(Name = "信号时刻")]
  15. public DateTime SigTime { get; set; }
  16. [Display(Name = "测向方向值")]
  17. public double Fx { get; set; }
  18. }
  19. }