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.

37 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.RptMng.Models
{
[JsonObject]
public class MsRptWlTrans : ModelObjectBillHead
{
public string BillNo { get; set; }
public string TruckNo { get; set; }
public string DrvName { get; set; }
public string CustomerName { get; set; }
public string ExpDate { get; set; }
public string YardName { get; set; }
public string RtnYardName { get; set; }
public string DstArea { get; set; }
public decimal RealMil { get; set; }
public decimal OverLoadMil { get; set; }
public decimal NoLoadMil { get; set; }
public decimal RatedFuel { get; set; }
public decimal FuelQty { get; set; }
public string ContainerType { get; set; }
public decimal FixFsTotal { get; set; }
public decimal Freight { get; set; }
public decimal ExtrasFee { get; set; }
public decimal Charge { get; set; }
public string RefBillNo { get; set; }
public string GId { get; set; }
}
}