WarehouseCondition.cs 632 B

1234567891011121314151617181920212223242526
  1. using DapperORMCore.Model.CoreModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NXWMS.Model.AppModels.Condition.Base
  8. {
  9. public class WarehouseCondition : OperationInfo
  10. {
  11. public int WarehouseId { get; set; }
  12. /// <summary>
  13. /// NewId主键
  14. /// </summary>
  15. /// <summary>
  16. /// 仓库编码
  17. /// </summary>
  18. public string WarehouseCode { get; set; }
  19. /// <summary>
  20. /// 仓库名称
  21. /// </summary>
  22. public string WarehouseName { get; set; }
  23. }
  24. }