using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.District
{
///
/// 地区 洲际表
///
[SugarTable("Dis_Intercontinental")]
public class Dis_Intercontinental :EntityBase
{
///
/// 洲际名称 全称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string? FullName { get; set; }
///
/// 洲际名称 中文
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? CnShortName { get; set; }
///
/// 洲际名称 英文
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string? EnShortName { get; set; }
}
}