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
{
///
/// 天线信息
///
public class TxInfo:BaseEntity
{
///
/// 天线名称
///
[Required]
[MaxLength(50)]
public string Name { get; set; }
///
/// 天线类型
///
public EnumTxType TxType { get; set; }
public double Lon { get; set; }
public double Lat { get; set; }
///
/// 是否启用
///
public bool Enable { get; set; }
///
/// 备注
///
[MaxLength(200)]
public string Remark { get; set; }
}
}