WarehouseEntity.cs 658 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LeaRun.Application.Entity.WarehouseManage
  7. {
  8. public class WarehouseEntity
  9. {
  10. /*
  11. * id
  12. */
  13. public int WarehouseId {get;set;}
  14. /*
  15. * 编码
  16. */
  17. public String Code {get;set;}
  18. /*
  19. * 仓库名称
  20. */
  21. public String WarehouseName {get;set;}
  22. /*
  23. * 创建时间
  24. */
  25. public DateTime CreateDt {get;set;}
  26. /*
  27. * 更新时间
  28. */
  29. public DateTime UpdateDt { get; set; }
  30. }
  31. }