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.
150 lines
3.6 KiB
C#
150 lines
3.6 KiB
C#
3 years ago
|
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 = "op_letter_truck", DisableSyncStructure = true)]
|
||
|
public partial class OpLetterTruck {
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编号
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(Name = "LE_ID", DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
|
||
|
public string LEID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string BSNO { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
||
|
public string CARGODATE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
||
|
public DateTime? CLOSINGDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 箱型箱量
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string CTNS { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 厂家地址
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string FACTRYADDR { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 厂家联系人
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string FACTRYATTN { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string FACTRYNAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 厂家电话
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string FACTRYTEL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 要求到厂时间
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string FACTRYTIME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string INPUTBY { get; set; } = "";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 录入时间
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
||
|
public DateTime? INPUTTIME { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool? ISTEAMSTATUS { get; set; } = false;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结算方式
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string PAYTYPE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string REMARK { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 返箱联系人
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string RETURNATTN { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 返箱电话
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string RETURNTEL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 返箱场站
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string RETURNYARD { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public int? TEAMTYPE { get; set; } = 0;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 承运车队
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string TRUCK { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
||
|
public string TRUCKDATE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
||
|
public string TRUCKDETAIL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 陆运费
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
||
|
public decimal? TRUCKFEE { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string TRUCKSTATUS { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 背箱场站
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string YARD { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 场站联系人
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string YARDATTN { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 场站电话
|
||
|
/// </summary>
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string YARDTEL { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|