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.
80 lines
1.9 KiB
C#
80 lines
1.9 KiB
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace djy.Model.Isf
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "ISF_CompanyTemplate", DisableSyncStructure = true)]
|
|
public class ISF_CompanyTemplate
|
|
{
|
|
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
[MaxLength(50)]
|
|
public string TemPlateName { get; set; }
|
|
|
|
|
|
|
|
|
|
[MaxLength(50)]
|
|
public string InFoType { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CompanyType { get; set; }
|
|
[MaxLength(50)]
|
|
public string CompanyId { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CompanyName { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string IdTypeCode { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string Address { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string City { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string Province { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string ProvinceCode { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CountryCode { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CountryName { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string PostCode { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string HstCode { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string IeType { 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; }
|
|
}
|
|
}
|