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.

66 lines
1.7 KiB
C#

using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "code_edicode", DisableSyncStructure = true)]
public partial class CodeEdicode {
[JsonProperty, Column(DbType = "varchar(60)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string ADDR1 { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string ADDR2 { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string ADDR3 { get; set; }
[JsonProperty, Column(DbType = "varchar(25)")]
public string ATTN { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string CITY { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string CODE { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string COUNTRY { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string CUSTNAME { get; set; }
[JsonProperty]
public bool? ISCONSIGNEE { get; set; }
[JsonProperty]
public bool? ISNOTIFYPARTY { get; set; }
[JsonProperty]
public bool? ISSHIPPER { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string NAME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string POSTCODE { get; set; }
[JsonProperty, Column(DbType = "varchar(3)")]
public string PROVINCE { get; set; }
[JsonProperty, Column(DbType = "varchar(23)")]
public string TEL { get; set; }
}
}