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.Storage.Models;
namespace DSWeb.Areas.Storage.Models
{
public class RespGetIndo : RespCommon
{
public List<IndoModel> Data { get; set; }
public int Total { get; set; }
}
public class IndoModel
{
public IndoModel()
{
this.WMSID = Guid.Empty;
this.MBLNO = string.Empty;
this.BSNO = 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 BSNO { 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 RespReportIndo : RespCommon
{
public List<IndoReportModel> Data { get; set; }
}
public class IndoReportModel
{
public IndoReportModel()
{
this.WMSID = Guid.Empty;
this.MBLNO = string.Empty;
this.BSNO = 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 BSNO { 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; }
}
}