t_auction_item.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码是根据模板生成的。
  4. //
  5. // 手动更改此文件可能会导致应用程序中发生异常行为。
  6. // 如果重新生成代码,则将覆盖对此文件的手动更改。
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace DataCenter
  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 decimal seller_guid { get; set; }
  17. public string seller_name { get; set; }
  18. public string seller_ip { get; set; }
  19. public short auction_class { get; set; }
  20. public string item_name { get; set; }
  21. public int item_id { get; set; }
  22. public short assets_type { get; set; }
  23. public int deposit { get; set; }
  24. public int sum_price { get; set; }
  25. public float unit_price { get; set; }
  26. public System.DateTime expire_time { get; set; }
  27. public decimal tran_guid { get; set; }
  28. public System.DateTime create_time { get; set; }
  29. public System.DateTime modify_time { get; set; }
  30. }
  31. }