using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.Dispatch.DB { [Table("ch_fee")] public class ChFeeInfo { [Key] public string GID { get; set; } public string BSNO { get; set; } public int FEETYPE { get; set; } public string FEENAME { get; set; } public string FEEDESCRIPTION { get; set; } public string CUSTOMERTYPE { get; set; } public string CUSTOMERNAME { get; set; } public string UNIT { get; set; } public decimal UNITPRICE { get; set; } public decimal QUANTITY { get; set; } public decimal AMOUNT { get; set; } public string CURRENCY { get; set; } public decimal EXCHANGERATE { get; set; } public string REASON { get; set; } public string REMARK { get; set; } public decimal COMMISSIONRATE { get; set; } public string ENTEROPERATOR { get; set; } public DateTime ENTERDATE { get; set; } public bool ISOPEN { get; set; } public bool ISADVANCEDPAY { get; set; } public int SORT { get; set; } public int FEESTATUS { get; set; } public string FEEFRT { get; set; } public string CARGO_GID { get; set; } public decimal TAXRATE { get; set; } public decimal NOTAXAMOUNT { get; set; } public decimal ACCTAXRATE { get; set; } public int LINENUM { get; set; } public decimal TAXUNITPRICE { get; set; } public string MODIFIEDUSER { get; set; } public DateTime? MODIFIEDTIME { get; set; } public string WMSOUTBSNO { get; set; } public decimal PREAMOUNT { get; set; } public bool ISINVOICE { get; set; } public string INPUTMODE { get; set; } public string LOCALCURR { get; set; } public string MANAGER { get; set; } public bool ISACC { get; set; } public bool? CUSTDUI { get; set; } } }