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/Storage/Models/RespGetKuCun.cs

110 lines
3.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using DSWeb.Areas.Storage.Models;
namespace DSWeb.Areas.Storage.Models
{
public class RespGetKuCun: RespCommon
{
public List<KuCunModel> Data { get; set; }
public int Total { get; set; }
}
public class MapInfo : RespCommon {
public string StorageCode { get; set; }
public string AreaCode { get; set; }
}
public class KuCunModel
{
public KuCunModel()
{
this.WMSID = Guid.Empty;
this.CUSTOMERNAME = string.Empty;
this.CUSTOMNO = string.Empty;
this.GOODSNAME = string.Empty;
this.PKGS = "0";
this.PKGS_FIRST = "0";
this.MBLNO = string.Empty;
this.BSNO = string.Empty;
this.CNTRNO = string.Empty;
this.STOREHOUSE = string.Empty;
this.AREACODE = string.Empty;
}
public Guid WMSID { get; set; }
public string CUSTOMERNAME { get; set; }
public string CUSTOMNO { get; set; }//报关单号
public string GOODSNAME { get; set; }//货物名称
public string PKGS_FIRST { get; set; }//入库件数
public string PKGS { get; set; }//库存件数
public string MBLNO { get; set; }//提单号
public string BSNO { get; set; } //入库单号
public string CNTRNO { get; set; }//箱号
public string STOREHOUSE { get; set; }//仓库代码
public string AREACODE { get; set; }//库位代码
public string STOREHOUSENAME { get; set; }//仓库名字
public string AREANAME { get; set; }//库位
public string STORAGEUNITCOUNT { get; set; }//计费数量
public string INPKGS { get; set; }//入库件数
public string INKGS { get; set; }//入库毛重
public string INDATE { get; set; }//入库日期
public string KGS { get; set; }//毛重
public string GOODSFEETYPE { get; set; }//货物大类
public string GOODSOWNER { get; set; }//货主
}
public class RespReportKuCun : RespCommon
{
public List<KuCunReportModel> Data { get; set; }
}
public class KuCunReportModel
{
public KuCunReportModel()
{
this.WMSID = Guid.Empty;
this.CUSTOMERNAME = string.Empty;
this.CUSTOMNO = string.Empty;
this.GOODSNAME = string.Empty;
this.PKGS = "0";
this.PKGS_FIRST = "0";
this.MBLNO = string.Empty;
this.BSNO = string.Empty;
this.CNTRNO = string.Empty;
this.STOREHOUSE = string.Empty;
this.AREACODE = string.Empty;
}
public Guid WMSID { get; set; }
public string CUSTOMERNAME { get; set; }
public string CUSTOMNO { get; set; }//报关单号
public string GOODSNAME { get; set; }//货物名称
public string PKGS_FIRST { get; set; }//入库件数
public string PKGS { get; set; }//库存件数
public string MBLNO { get; set; }//提单号
public string BSNO { get; set; } //入库单号
public string CNTRNO { get; set; }//箱号
public string STOREHOUSE { get; set; }//仓库
public string AREACODE { get; set; }//库位
}
public class OP_WMS_STOREHOUSE {
public int Id { get; set; }
public string AREACODE { get; set; }
public string AREANAME { get; set; }
public string MAPHTML { get; set; }
}
}