Проект

Общее

Профиль

Пример моего Journal класса » История » Версия 2

Кужальков Павел, 23.06.2019 10:42

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