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.

72 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using DSWeb.Areas.Dispatch.Models;
namespace DSWeb.Areas.Storage.Models
{
public class RespGetOutdo : RespCommon
{
public List<OutdoModel> Data { get; set; }
public int Total { get; set; }
}
public class OutdoModel
{
public OutdoModel()
{
this.WMSID = Guid.Empty;
this.MBLNO = string.Empty;
this.WMSNO = string.Empty;
this.DODATE = DateTime.Today.ToString("YYYY-MM-DD");
this.GOODSNAME = string.Empty;
this.PKGS = "0";
this.KGS = "0";
this.CHANGETYPE = string.Empty;
this.CNTRNO = string.Empty;
}
public Guid WMSID { get; set; }
public string MBLNO { get; set; }
public string WMSNO { get; set; }
public string DODATE { get; set; }
public string GOODSNAME { get; set; }
public string PKGS { get; set; }
public string KGS { get; set; }
public string CHANGETYPE { get; set; }
public string CNTRNO { get; set; }
}
public class RespReportOutdo : RespCommon
{
public List<OutdoReportModel> Data { get; set; }
}
public class OutdoReportModel
{
public OutdoReportModel()
{
this.WMSID = Guid.Empty;
this.MBLNO = string.Empty;
this.WMSNO = string.Empty;
this.DODATE = DateTime.Today.ToString("YYYY-MM-DD");
this.GOODSNAME = string.Empty;
this.PKGS = "0";
this.KGS = "0";
this.CHANGETYPE = string.Empty;
this.CNTRNO = string.Empty;
}
public Guid WMSID { get; set; }
public string MBLNO { get; set; }
public string WMSNO { get; set; }
public string DODATE { get; set; }
public string GOODSNAME { get; set; }
public string PKGS { get; set; }
public string KGS { get; set; }
public string CHANGETYPE { get; set; }
public string CNTRNO { get; set; }
}
}