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 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 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; } } }