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.
49 lines
1020 B
C#
49 lines
1020 B
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace djy.Model.Ams
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "CodeProvince", DisableSyncStructure = true)]
|
|
public class CodeProvince
|
|
{
|
|
|
|
|
|
[MaxLength(36)]
|
|
public string GID { get; set; }
|
|
|
|
[MaxLength(20)]
|
|
public string Code { get; set; }
|
|
|
|
[MaxLength(20)]
|
|
public string Country { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CNName { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string ENName { get; set; }
|
|
|
|
[MaxLength(4000)]
|
|
public string Description { get; set; }
|
|
|
|
[MaxLength(500)]
|
|
public string Remark { get; set; }
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
public DateTime? ModifyTime { get; set; }
|
|
|
|
[MaxLength(36)]
|
|
public string CreateUser { get; set; }
|
|
|
|
[MaxLength(36)]
|
|
public string ModifyUser { get; set; }
|
|
|
|
|
|
}
|
|
}
|