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.
|
|
|
|
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 MsRptBulkTrans : ModelObjectBillHead
|
|
|
|
|
{
|
|
|
|
|
public string TruckNo { get; set; }
|
|
|
|
|
public string ExpDate { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal RealMil { get; set; }
|
|
|
|
|
public decimal OverLoadMil { get; set; }
|
|
|
|
|
public decimal NoLoadMil { get; set; }
|
|
|
|
|
public decimal LoadCount { get; set; }
|
|
|
|
|
public decimal UnLoadCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal Weight { get; set; }
|
|
|
|
|
public decimal TonMil { get; set; }
|
|
|
|
|
public decimal RatedFuel { get; set; }
|
|
|
|
|
public decimal FuelQty { get; set; }
|
|
|
|
|
public decimal TransTotal { get; set; }
|
|
|
|
|
public string GId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|