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.
88 lines
2.3 KiB
C#
88 lines
2.3 KiB
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace djy.Model.Isf
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "ISF_Company", DisableSyncStructure = true)]
|
|
public class ISF_Company
|
|
{
|
|
[MaxLength(50)]
|
|
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string PID { get; set; }
|
|
/// <summary>
|
|
/// 公司类型
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CompanyType { get; set; }
|
|
/// <summary>
|
|
/// 公司ID
|
|
/// </summary>
|
|
public string CompanyId { get; set; }
|
|
/// <summary>
|
|
/// 公司名称
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CompanyName { get; set; }
|
|
/// <summary>
|
|
/// id类型代码
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string IdTypeCode { get; set; }
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string Address { get; set; }
|
|
/// <summary>
|
|
/// 城市
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string City { get; set; }
|
|
/// <summary>
|
|
/// 省份
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string Province { get; set; }
|
|
/// <summary>
|
|
/// 省份代码
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string ProvinceCode { get; set; }
|
|
/// <summary>
|
|
/// 国家代码
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CountryCode { get; set; }
|
|
/// <summary>
|
|
/// 国家
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CountryName { get; set; }
|
|
/// <summary>
|
|
/// 邮编
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string PostCode { get; set; }
|
|
/// <summary>
|
|
/// HSTCode多个用英文逗号隔开
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string HstCode { get; set; }
|
|
///// <summary>
|
|
///// 进出口类型(1.进口2.出口)
|
|
///// </summary>
|
|
//[MaxLength(50)]
|
|
public string IeType { get; set; }
|
|
|
|
|
|
public bool? IsDel { get; set; }
|
|
|
|
public string State { get; set; }
|
|
}
|
|
}
|