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.
BaoGuanSYHT/djy.Model/db/TSysCountryCodeCheckone.cs

66 lines
1.8 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 = "t_sys_country_code_checkone", DisableSyncStructure = true)]
public partial class TSysCountryCodeCheckone {
[JsonProperty, Column(IsPrimary = true, IsIdentity = true)]
public int ID { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string ComName { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string Email { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string FAX { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string LinkMan { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string Nation { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string PARTYCODE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string Phone { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string Postcode { get; set; }
[JsonProperty, Column(DbType = "varchar(80)")]
public string Principal { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string Province { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string Referrer { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string Region { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string ReMark { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string SurveyAddress { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string TelNum { get; set; }
}
}