12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- using NXWMS.DataAccess.Entity;
- using NXWMS.Model.CoreModels;
- using NXWMS.String.Enums;
- using System;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Text;
- namespace NXWMS.Model.AppModels.Result.Balance
- {
- /// <summary>
- /// 库存明细查询
- /// </summary>
- public class BalanceDetailSearchResult : WMS_STK_BALANCE
- {
- public string MaterielTypeCode { get; set; }
- public string MaterielTypeName { get; set; }
- public string MaterielCode { get; set; }
- public string MaterielName { get; set; }
- public string UnitCode { get; set; }
- public string UnitName { get; set; }
- public int QTY { get; set; }
- public string BatchNo { get; set; }
- public string TrayCode { get; set; }
- public int TrayDtlId { get; set; }
- public string PalletCode { get; set; }
- public string PalletName { get; set; }
- public DateTime? ProductDate { get; set; }
- public DateTime? ExpDate { get; set; }
- public string QualityStatus { get; set; }
- public string QualityStatusName { get; set; }
- public string BalanceStatus { get; set; }
- public string BalanceStatusName { get; set; }
- public string SpecsModel { get; set; }
- public string SupplierCode { get; set; }
- public string SupplierName { get; set; }
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|