DT_TrendChart.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models.Entity.LotteryNumDB
  6. {
  7. [ZXTableName("KJDataBase.DT_TrendChart")]
  8. public class DT_TrendChart
  9. {
  10. [Key(true)]
  11. public int Id { get; set; }
  12. [IsInsert()]
  13. public string Name { get; set; }
  14. [IsInsert()]
  15. public int Cid { get; set; }
  16. [IsInsert()]
  17. public int Tid { get; set; }
  18. [IsInsert()]
  19. public int Status { get; set; }
  20. [IsInsert()]
  21. public int OrderBy { get; set; }
  22. [IsInsert()]
  23. public string Url { get; set; }
  24. [IsInsert()]
  25. public int type { get; set; }
  26. [IsInsert()]
  27. public string hTitle { get; set; }
  28. [IsInsert()]
  29. public string hKeywords { get; set; }
  30. [IsInsert()]
  31. public string hDescription { get; set; }
  32. [IsInsert()]
  33. public int Direction { get; set; }
  34. [IsInsert()]
  35. public int TemplateId { get; set; }
  36. }
  37. }