Record.cs 562 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection.Emit;
  5. using System.Text;
  6. namespace WpfTest1.SQLite
  7. {
  8. public class Record
  9. {
  10. public int r_id { get; set; }
  11. public int r_type { get; set; }
  12. public int p_id { get; set; }
  13. public int d_id { get; set; }
  14. public int filter_id { get; set; }
  15. public DateTime r_time { get; set; }
  16. public int r_count { get; set; }
  17. public string r_selection { get; set; }
  18. public string r_type_d { get; set; }
  19. }
  20. }