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; }
        /// 
        /// 天线类型
        /// 
        public EnumTxType TxType { get; set; }
        public double Lon { get; set; }
        public double Lat { get; set; }
        /// 
        /// 卫星编号
        /// 
        public int? SatInfoID { get; set; }
    }
}