-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollection.cs
89 lines (87 loc) · 1.5 KB
/
Collection.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
namespace JY.Model
{
/// <summary>
/// Collection:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class Collection
{
public Collection()
{}
#region Model
private long _id;
private int? _productid;
private string _productname;
private int? _memberid;
private string _membername;
private DateTime? _collectiondate;
private int? _sort;
private bool _isdelete;
/// <summary>
/// ID
/// </summary>
public long ID
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
/// 产品ID
/// </summary>
public int? ProductId
{
set{ _productid=value;}
get{return _productid;}
}
/// <summary>
///
/// </summary>
public string ProductName
{
set{ _productname=value;}
get{return _productname;}
}
/// <summary>
/// 会员ID
/// </summary>
public int? MemberId
{
set{ _memberid=value;}
get{return _memberid;}
}
/// <summary>
///
/// </summary>
public string MemberName
{
set{ _membername=value;}
get{return _membername;}
}
/// <summary>
/// 收藏时间
/// </summary>
public DateTime? CollectionDate
{
set{ _collectiondate=value;}
get{return _collectiondate;}
}
/// <summary>
/// 排序
/// </summary>
public int? Sort
{
set{ _sort=value;}
get{return _sort;}
}
/// <summary>
/// 是否删除
/// </summary>
public bool IsDelete
{
set{ _isdelete=value;}
get{return _isdelete;}
}
#endregion Model
}
}