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.

59 lines
1.4 KiB
C#

using FreeSql.DataAnnotations;
using Newtonsoft.Json;
using System;
using System.ComponentModel.DataAnnotations;
namespace djy.Model.Ams
{
[JsonObject(MemberSerialization.OptIn), Table(Name = "AMS_AddrTemplate", DisableSyncStructure = true)]
public class AMS_AddrTemplate
{
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[MaxLength(50)]
public string TemPlateName { get; set; }
[MaxLength(50)]
public string Type { get; set; }
[MaxLength(50)]
public string Name { get; set; }
[MaxLength(200)]
public string ADDR { get; set; }
[MaxLength(50)]
public string Country { get; set; }
[MaxLength(50)]
public string CountryCode { get; set; }
[MaxLength(50)]
public string City { get; set; }
[MaxLength(50)]
public string Tel { get; set; }
public bool? IsDel { get; set; }
[MaxLength(50)]
public string UserID { get; set; }
[MaxLength(50)]
public string UserName { get; set; }
[MaxLength(50)]
public string CompID { get; set; }
[MaxLength(100)]
public string CompName { get; set; }
public DateTime CreateTime { get; set; }
public DateTime? LastUpdate { get; set; }
}
}