using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.System
{
    /// 
    /// 国家
    /// 
    [SugarTable("Sys_Countries")]
    public class Sys_Countries: EntityBase
    {
        /// 
        /// 洲 Id
        /// 
        [SugarColumn(IsNullable = true,ColumnDataType = "int")]
        public int ContinentId { get; set; }
        /// 
        /// 三字码
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
        public string ThreeCode { get; set; }
        /// 
        /// 国家名称 CN 简称
        /// 
        [SugarColumn(IsNullable = true,ColumnDataType = "varchar(50)")]
        public string Name_CN { get; set; }
        /// 
        /// 国家名称 CN 全称
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string Name_CN_Full { get; set; }
        /// 
        /// 国家名称 EN 简称
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
        public string Name_EN { get; set; }
        /// 
        /// 国家名称 EN 全称
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
        public string Name_EN_Full { get; set; }
    }
}