Пример моего Journal класса » История » Версия 1
Кужальков Павел, 23.06.2019 10:41
| 1 | 1 | Кужальков Павел | h1. Пример моего Journal класса |
|---|---|---|---|
| 2 | |||
| 3 | |||
| 4 | public partial class tabJournal |
||
| 5 | { |
||
| 6 | |||
| 7 | public int id { get; set; } |
||
| 8 | public int journalized_id { get; set; } |
||
| 9 | public string type { get; set; } |
||
| 10 | public string login { get; set; } |
||
| 11 | public string notes { get; set; } |
||
| 12 | public System.DateTime created_on { get; set; } |
||
| 13 | |||
| 14 | public virtual ICollection<tabJournal_details> Journal_details { get; set; } |
||
| 15 | } |
||
| 16 | |||
| 17 | public partial class tabJournal_details |
||
| 18 | { |
||
| 19 | public int id { get; set; } |
||
| 20 | public int journal_id { get; set; } |
||
| 21 | public string property { get; set; } |
||
| 22 | public string prop_key { get; set; } |
||
| 23 | public string old_value { get; set; } |
||
| 24 | public string value { get; set; } |
||
| 25 | |||
| 26 | public virtual tabJournal Journal { get; set; } |
||
| 27 | } |