using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
///
/// 三字码资料表
///
[SugarTable("Res_ThreeCode")]
public class Res_ThreeCode:EntityBase
{
///
/// 三字码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Three { get; set; }
///
/// 四字码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Four { get; set; }
///
/// 国家
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string Country { get; set; }
///
/// 城市
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string City { get; set; }
///
/// 机场
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string AirPort { get; set; }
///
/// 机场英文名
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string AirPort_En { get; set; }
}
}