L_TDK.cs 776 B

1234567891011121314151617181920212223242526272829303132
  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.L_TDK")]
  8. public class L_TDK
  9. {
  10. [Key(true)]
  11. public int Id { get; set; }
  12. [IsInsert()]
  13. public string PK { get; set; }
  14. [IsInsert()]
  15. public string TDKType { get; set; }
  16. [IsInsert()]
  17. public string Tags { get; set; }
  18. [IsInsert()]
  19. public string Description { get; set; }
  20. [IsInsert()]
  21. public string Keywords { get; set; }
  22. [IsInsert()]
  23. public DateTime Time { get; set; }
  24. [IsInsert()]
  25. public int Type { get; set; }
  26. [IsInsert()]
  27. public string Title { get; set; }
  28. }
  29. }