Base_TrendChart.cs 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models.Entity.LottomatBaseDB
  6. {
  7. [ZXTableName("ZXDataBase.Base_TrendChart")]
  8. public class Base_TrendChart
  9. {
  10. [Key(true)]
  11. [IsInsert(false)]
  12. public int PK { get; set; }
  13. [IsInsert]
  14. public string Id { get; set; }
  15. [IsInsert]
  16. public string Title { get; set; }
  17. [IsInsert]
  18. public string TrendChartUrl { get; set; }
  19. [IsInsert]
  20. public string CreateUserName { get; set; }
  21. [IsInsert]
  22. public DateTime CreateDate { get; set; }
  23. [IsInsert]
  24. public string CreateUserId { get; set; }
  25. [IsInsert]
  26. public string CategoryId { get; set; }
  27. [IsInsert]
  28. public int IsDelete { get; set; }
  29. [IsInsert]
  30. public string Remark { get; set; }
  31. [IsInsert]
  32. public int SortCode { get; set; }
  33. [IsInsert]
  34. public int IsStick { get; set; }
  35. }
  36. }