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.
87 lines
2.3 KiB
C#
87 lines
2.3 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 = "v_dui_opbill", DisableSyncStructure = true)]
|
|
public partial class VDuiOpbill {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = 100)]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? BSSTATUS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string CUSTOMNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CUSTSERVICE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DOC { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DUINO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string ENTERP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string HBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string INPUTBY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string OP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(14)")]
|
|
public string OPLB { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OPLBNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ORDERNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PORTDISCHARGE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PORTLOAD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SALE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string VESSEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VOYNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|