You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1014 B
C#
47 lines
1014 B
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
namespace djy.Model.Ams
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "CodeCountry", DisableSyncStructure = true)]
|
|
public class CodeCountry
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// AMScode
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
public string EnName { get; set; }
|
|
|
|
public string CnName { get; set; }
|
|
|
|
|
|
public string Capital { get; set; }
|
|
|
|
public string Continent { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public DateTime? ModifyTime { get; set; }
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
public string ModifyUser { get; set; }
|
|
}
|
|
}
|