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.
DS7/DSWeb/Areas/Import/Models/RptImportKc/RptImportKc.cs

153 lines
4.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.Import.Models.RptImportKc
{
[JsonObject]
public class RptImportKc : ModelObjectBillHead
{
public decimal Id { get; set; }
public string ContractNo { get; set; }
public string HTH { get; set; }
public string CZRf { get; set; }
public string KFRf { get; set; }
public string CZdate { get; set; }
public string text { get; set; }
public string seller { get; set; }
public string buyer { get; set; }
public string Billno { get; set; }
public string Vessel { get; set; }
public string Voyage { get; set; }
public string Sailingdate { get; set; }
public string ArrivalDate { get; set; }
public string ContainerNo { get; set; }
public string SealNo { get; set; }
public string goodname { get; set; }
public string cargoinfoRf { get; set; }
public string cargociqRf { get; set; }
public decimal InNum { get; set; }
public decimal OutNum { get; set; }
public string FactoryNo { get; set; }
public string Weight { get; set; }
public string Weight_Out { get; set; }
public string CompanyName { get; set; }
}
[JsonObject]
public class RptImportKc_WMS : ModelObjectBillHead
{
private string _cargo_id = string.Empty;
private string _ContractNo = string.Empty;
private string _HTH = string.Empty;
private string _ContainerNo = string.Empty;
private string _seller = string.Empty;
private string _buyer = string.Empty;
private string _CompanyName = string.Empty;
private string _KFstate = string.Empty;
private string _goodname = string.Empty;
private string _InDate = string.Empty;
private string _InNum = string.Empty;
private string _OutDate = string.Empty;
private string _OutNum = string.Empty;
private string _RemainNum = string.Empty;
private string _Weight = string.Empty;
private string _Weight_Out = string.Empty;
private string _RemainWeight = string.Empty;
public string cargo_id
{
get { return _cargo_id; }
set { _cargo_id = value; }
}
public string ContractNo
{
get { return _ContractNo; }
set { _ContractNo = value; }
}
public string HTH
{
get { return _HTH; }
set { _HTH = value; }
}
public string ContainerNo
{
get { return _ContainerNo; }
set { _ContainerNo = value; }
}
public string seller
{
get { return _seller; }
set { _seller = value; }
}
public string buyer
{
get { return _buyer; }
set { _buyer = value; }
}
public string CompanyName
{
get { return _CompanyName; }
set { _CompanyName = value; }
}
public string KFstate
{
get { return _KFstate; }
set { _KFstate = value; }
}
public string goodname
{
get { return _goodname; }
set { _goodname = value; }
}
public string InDate
{
get { return _InDate; }
set { _InDate = value; }
}
public string InNum
{
get { return _InNum; }
set { _InNum = value; }
}
public string OutDate
{
get { return _OutDate; }
set { _OutDate = value; }
}
public string OutNum
{
get { return _OutNum; }
set { _OutNum = value; }
}
public string RemainNum
{
get { return _RemainNum; }
set { _RemainNum = value; }
}
public string Weight
{
get { return _Weight; }
set { _Weight = value; }
}
public string Weight_Out
{
get { return _Weight_Out; }
set { _Weight_Out = value; }
}
public string RemainWeight
{
get { return _RemainWeight; }
set { _RemainWeight = value; }
}
}
}