1234567891011121314151617181920212223242526272829 |
- 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("TxInfo")]
- public class TxInfo:BaseEntity
- {
- public string Name { get; set; }
- /// <summary>
- /// 天线类型
- /// </summary>
- public EnumTxType TxType { get; set; }
- public double Lon { get; set; }
- public double Lat { get; set; }
- /// <summary>
- /// 卫星编号
- /// </summary>
- public int? SatInfoID { get; set; }
- }
- }
|