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.
105 lines
2.4 KiB
C#
105 lines
2.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 = "vMsTruckClient", DisableSyncStructure = true)]
|
|
public partial class VMsTruckClient {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string BillRises1 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(41)", IsNullable = false)]
|
|
public string CodeAndName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
|
|
public string CustCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
|
|
public string CustName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISAGENT { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISAGENTCN { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISAIRLINES { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISBOOKING { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISCARRIER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISCONSIGNEE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISCONTROLLER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISCUSTOM { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISENTERP { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISEXPRESS { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISINSURE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISLEASING { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISNOTIFYPARTY { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISOTHER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISSHIPPER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISSTOP { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISTRADINGAGENCY { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISTRUCK { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISWAREHOUSE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISYARD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string OTHERS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string UNITPRICE { get; set; }
|
|
|
|
}
|
|
|
|
}
|