using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.District
{
///
/// 地区 城市
///
[SugarTable("Dis_City")]
public class Dis_City : EntityBase
{
///
/// 国家表Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int CountryId { get; set; }
///
/// 城市名称 中文
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? CnName { get; set; }
///
/// 城市名称 英文
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? EnName { get; set; }
///
/// 城市三字码 机场三字码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string? ThreeCharacterCode { get; set; }
///
/// 城市四字码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string? FourCharacterCode { get; set; }
///
/// 城市机场中文名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? CnAirportName { get; set; }
///
/// 城市机场英名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string? EnAirportName { get; set; }
}
}