using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.System { /// /// 洲 /// [SugarTable("Sys_Continent")] public class Sys_Continent:EntityBase { /// /// 洲名称 中文 /// [SugarColumn(IsNullable = true , ColumnDataType = "varchar(50)")] public string Name_CN { get; set; } /// /// 洲名称 英文 /// [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")] public string Name_EN { get; set; } } }