日期:2014-05-17 浏览次数:20389 次
private string _Address = string.Empty;
public string Address
{
get
{
return this._Address;
}
set
{
this._Address = value;
}
}
private byte []_images = string.Empty;
public byte[] Images
{
get
{
return this._images ;
}
set
{
this._images = value;
}
}