forked from tengge1/DTcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_group_price.cs
61 lines (60 loc) · 1.35 KB
/
user_group_price.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
namespace DTcms.Model
{
/// <summary>
/// 会员组价格
/// </summary>
[Serializable]
public partial class user_group_price
{
public user_group_price()
{ }
#region Model
private int _id;
private int _channel_id = 0;
private int _article_id = 0;
private int _group_id = 0;
private decimal _price = 0M;
/// <summary>
/// 自增ID
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 频道ID
/// </summary>
public int channel_id
{
set { _channel_id = value; }
get { return _channel_id; }
}
/// <summary>
/// 文章ID
/// </summary>
public int article_id
{
set { _article_id = value; }
get { return _article_id; }
}
/// <summary>
/// 会员组ID
/// </summary>
public int group_id
{
set { _group_id = value; }
get { return _group_id; }
}
/// <summary>
/// 价格
/// </summary>
public decimal price
{
set { _price = value; }
get { return _price; }
}
#endregion
}
}