123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using System.Text;
- namespace WpfTest1.SQLite
- {
- public class Record
- {
- public int r_id { get; set; }
- public int r_type { get; set; }
- public int p_id { get; set; }
- public int d_id { get; set; }
- public int filter_id { get; set; }
- public DateTime r_time { get; set; }
- public int r_count { get; set; }
- public string r_selection { get; set; }
- public string r_type_d { get; set; }
- }
- }
|