Storehouse.cs 564 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Datory;
  5. using Datory.Annotations;
  6. namespace GxPress.Entity
  7. {
  8. /// <summary>
  9. /// 库存
  10. /// </summary>
  11. [DataTable("tede_storehouse")]
  12. public class Storehouse : Datory.Entity
  13. {
  14. /// <summary>
  15. /// 库存数
  16. /// </summary>
  17. [DataColumn]
  18. public int StorehouseCount { get; set; }
  19. /// <summary>
  20. /// 录入时间
  21. /// </summary>
  22. [DataColumn]
  23. public DateTime EnteringDateTime { get; set; }
  24. }
  25. }