温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:狂龙通讯录管理系统2.0源码
当前文件:
KuangLongCommunicationV2/App_Code/Attribute.cs[3K,2009-6-12 11:46:37],打开代码结构图
KuangLongCommunicationV2/App_Code/Attribute.cs[3K,2009-6-12 11:46:37],打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Web; 5
using System.Web.Security; 6
using System.Web.UI; 7
using System.Web.UI.WebControls; 8
using System.Web.UI.WebControls.WebParts; 9
using System.Web.UI.HtmlControls; 10
11
/// <summary> 12
/// Attribute 的摘要说明 13
/// </summary> 14
public class Attribute 15
{ 16
public Attribute() 17
{ 18
// 19
// TODO: 在此处添加构造函数逻辑 20
// 21
} 22
private int _ID; 23
private string _userID; 24
private string _frdName; 25
private string _frdPhone; 26
private string _frdMobilePhone; 27
private string _frdAddress; 28
private string _frdQQ; 29
private string _frdEmail; 30
private string _frdImageUrl; 31
private DateTime CreateDate; 32
private string _general; 33
34
private bool _exist; 35
36
public int ID 37
{ 38
set { this._ID = value; } 39
get { return this._ID; } 40
41
} 42
public string UserID 43
{ 44
set { this._userID=value; } 45
get { return this._userID; } 46
47
} 48
public string FrdName 49
{ 50
set { this._frdName = value; } 51
get { return this._frdName; } 52
53
} 54
public string FrdPhone 55
{ 56
set { this._frdPhone = value; } 57
get { return this._frdPhone; } 58
59
} 60
public string FrdMobilePhone 61
{ 62
set { this._frdMobilePhone = value; } 63
get { return this._frdMobilePhone; } 64
65
} 66
public string FrdAddress 67
{ 68
set { this._frdAddress = value; } 69
get { return this._frdAddress; } 70
} 71
public string FrdQQ 72
{ 73
set { this._frdQQ = value; } 74
get { return this._frdQQ; } 75
76
} 77
public string FrdEmail 78
{ 79
set { this._frdEmail = value; } 80
get { return this._frdEmail; } 81
82
} 83
public string FrdImageUrl 84
{ 85
set { this._frdImageUrl = value;} 86
get { return this._frdImageUrl; } 87
} 88
public DateTime createdate 89
{ 90
set { this.CreateDate = value; } 91
get { return this.CreateDate; } 92
} 93
public bool Exist 94
{ 95
get { return this._exist; } 96
97
} 98
public string General 99
{ 100
set { this._general = value; } 101
get { return this._general; } 102
103
} 104
方法 方法 133
} 134









