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.
66 lines
1.8 KiB
C#
66 lines
1.8 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 = "EIP_Deliver", DisableSyncStructure = true)]
|
|
public partial class EIPDeliver {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "char(1)")]
|
|
public string BSSTATUS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BUYCONTRACT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? DELIVERDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DELIVERNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DRIVER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DRIVERTEL { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ENTERDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ENTEROPERATER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string FACTORY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1000)")]
|
|
public string GOODSNAMETT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string SALECONTRACT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string TRUCKNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|