using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Common.DB { [Table("Op_INTERNALTRADE")] public class Op_INTERNALTRADEmd { [Key] public string BSNO { get; set; } public string MASTERNO { get; set; } public bool BSSTATUS { get; set; } public bool FEESTATUS { get; set; } public string CUSTOMERNAME { get; set; } public decimal? CONTAINERDAYS { get; set; } public DateTime BSDATE { get; set; } public string ACCDATE { get; set; } public string MBLNO { get; set; } public string HBLNO { get; set; } public string CUSTNO { get; set; } public string STLNAME { get; set; } public DateTime? STLDATE { get; set; } public string BSSOURCE { get; set; } public string BSSOURCEDETAIL { get; set; } public string TRANSNO { get; set; } public string OP { get; set; } public string CUSTSERVICE { get; set; } public string SALE { get; set; } public string OPERATOR { get; set; } public string CORPID { get; set; } public string SALEDEPT { get; set; } public string CARRIER { get; set; } public string VESSEL { get; set; } public string VOYNO { get; set; } public string PORTLOADID { get; set; } public string PORTLOAD { get; set; } public DateTime? ETD { get; set; } public string YARD { get; set; } public DateTime? LOADEDCTNRETURNDATE { get; set; } public DateTime? EMPTYCTNTOSHIPPERDATE { get; set; } public string TRUCKER { get; set; } public string TRUCKNO { get; set; } public string CNTRNO { get; set; } public string SEALNO { get; set; } public decimal PORTLOADSTORAGEPERIOD { get; set; } public decimal FBPPORTLOAD { get; set; } public string PORTLOADREMARK { get; set; } public string VIAID { get; set; } public string VIA { get; set; } public DateTime? VIA_ETA { get; set; } public string VIA_VESSEL { get; set; } public string VIA_VOYNO { get; set; } public DateTime? VIA_ETD { get; set; } public decimal? VIA_STORAGEPERIOD { get; set; } public string VIA2ID { get; set; } public string VIA2 { get; set; } public DateTime? VIA2_ETA { get; set; } public string VIA2_VESSEL { get; set; } public string VIA2_VOYNO { get; set; } public DateTime? VIA2_ETD { get; set; } public decimal? VIA2_STORAGEPERIOD { get; set; } public string VIA3ID { get; set; } public string VIA3 { get; set; } public DateTime? VIA3_ETA { get; set; } public string VIA3_VESSEL { get; set; } public string VIA3_VOYNO { get; set; } public DateTime? VIA3_ETD { get; set; } public decimal? VIA3_STORAGEPERIOD { get; set; } public string VIA_MARK { get; set; } public string PORTDISCHARGEID { get; set; } public string PORTDISCHARGE { get; set; } public string PlACERECEIPT { get; set; } public string TRUCKER2 { get; set; } public string TRUCKNO2 { get; set; } public string CONSIGNEE { get; set; } public string CONSIGNEECONTACT { get; set; } public string CONSIGNEETEL { get; set; } public DateTime? DISPATCHDATE { get; set; } public DateTime? DELIVERYDATE { get; set; } public DateTime? RECEIVEDATE { get; set; } public DateTime? ETA { get; set; } [Timestamp] public byte[] TIMEMARK { get; set; } public string DISCHARGEREMARK { get; set; } public string CREATOR { get; set; } public DateTime? BILLFEESTATUSTIME { get; set; } public int? BillFeeStatus { get; set; } } }