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.

102 lines
2.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 = "VW_Settlement", DisableSyncStructure = true)]
public partial class VWSettlement {
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
public string BSNO { get; set; }
[JsonProperty]
public int? BSSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CONTRACTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)", IsNullable = false)]
public string CUSTOMNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string CUSTOMNO2 { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CUSTSERVICE { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DOC { get; set; }
[JsonProperty]
public DateTime? ETD { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string GOODSNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string HBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string INPUTBY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? NETWEIGHT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string NUMBERPLATE { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string OP { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OPLB { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OPLBNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PORTDISCHARGE { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PORTLOAD { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VESSEL { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string VOYNO { get; set; }
}
}