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.

51 lines
1.4 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 = "info_shipper", DisableSyncStructure = true)]
public partial class InfoShipper {
[JsonProperty, Column(Name = "shipperID", DbType = "varchar(10)", IsPrimary = true, IsNullable = false)]
public string ShipperID { get; set; }
[JsonProperty, Column(Name = "codename", DbType = "varchar(20)")]
public string Codename { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string DELIVERADDRESS { get; set; } = "";
[JsonProperty]
public bool? ISPUBLIC { get; set; } = false;
[JsonProperty, Column(DbType = "varchar(1024)")]
public string LOADADDRESS { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(30)")]
public string SERVICECONTRACTNO { get; set; }
[JsonProperty, Column(Name = "shipperdetail", DbType = "varchar(600)")]
public string Shipperdetail { get; set; }
/// <summary>
/// 下拉选择(Shipper-1,Consinee-2,Notifypaty-3,Agent-4)
/// </summary>
[JsonProperty, Column(Name = "shippertype")]
public int? Shippertype { get; set; } = 0;
/// <summary>
/// 客户简称
/// </summary>
[JsonProperty, Column(DbType = "varchar(20)")]
public string SHORTNAME { get; set; }
}
}