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