|
|
|
|
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("OP_LETTER_TRUCK")]
|
|
|
|
|
public class OpLetterTruckInfo
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public string LE_ID { get; set; }
|
|
|
|
|
public string TRUCK { get; set; }
|
|
|
|
|
public string CTNS { get; set; }
|
|
|
|
|
public string YARD { get; set; }
|
|
|
|
|
public string YARDATTN { get; set; }
|
|
|
|
|
public string YARDTEL { get; set; }
|
|
|
|
|
public DateTime INPUTTIME { get; set; }
|
|
|
|
|
public string FACTRYTIME { get; set; }
|
|
|
|
|
public string FACTRYATTN { get; set; }
|
|
|
|
|
public string FACTRYTEL { get; set; }
|
|
|
|
|
public string FACTRYADDR { get; set; }
|
|
|
|
|
public string RETURNYARD { get; set; }
|
|
|
|
|
public string RETURNATTN { get; set; }
|
|
|
|
|
public string RETURNTEL { get; set; }
|
|
|
|
|
public decimal TRUCKFEE { get; set; }
|
|
|
|
|
public decimal? OTHERFEE { get; set; }
|
|
|
|
|
public string PAYTYPE { get; set; }
|
|
|
|
|
public string REMARK { get; set; }
|
|
|
|
|
public DateTime? CLOSINGDATE { get; set; }
|
|
|
|
|
public int TEAMTYPE { get; set; }
|
|
|
|
|
public bool ISTEAMSTATUS { get; set; }
|
|
|
|
|
public string INPUTBY { get; set; }
|
|
|
|
|
public string FACTRYNAME { get; set; }
|
|
|
|
|
|
|
|
|
|
public string TRUCKSTATUS { get; set; }
|
|
|
|
|
public string BSNO { get; set; }
|
|
|
|
|
public string TRUCKDETAIL { get; set; }
|
|
|
|
|
public string CARGODATE { get; set; }
|
|
|
|
|
public string TRUCKDATE { get; set; }
|
|
|
|
|
|
|
|
|
|
public string KGS { get; set; }
|
|
|
|
|
public string ISFEE { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|