t_auction_item.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码是根据模板生成的。
  4. //
  5. // 手动更改此文件可能会导致应用程序中发生异常行为。
  6. // 如果重新生成代码,则将覆盖对此文件的手动更改。
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Modules.Robot
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class t_auction_item
  14. {
  15. public decimal item_guid { get; set; }
  16. public bool is_deleted { get; set; }
  17. public decimal seller_guid { get; set; }
  18. public string seller_name { get; set; }
  19. public string seller_ip { get; set; }
  20. public short auction_class { get; set; }
  21. public string item_name { get; set; }
  22. public int item_id { get; set; }
  23. public short assets_type { get; set; }
  24. public int deposit { get; set; }
  25. public int sum_price { get; set; }
  26. public float unit_price { get; set; }
  27. public System.DateTime expire_time { get; set; }
  28. public decimal tran_guid { get; set; }
  29. public System.DateTime create_time { get; set; }
  30. public System.DateTime modify_time { get; set; }
  31. }
  32. }