139 lines
2.4 KiB
C#
139 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class ScanModel
|
|
{
|
|
private string _boxcode = string.Empty;
|
|
private string _block = string.Empty;
|
|
private string _area = string.Empty;
|
|
private string _scanaddress = string.Empty;
|
|
private string _scanip = string.Empty;
|
|
private string _boxshow = string.Empty;
|
|
private string _boxshowip = string.Empty;
|
|
private string _usercode = string.Empty;
|
|
private int _state;
|
|
|
|
public string Boxcode
|
|
{
|
|
get
|
|
{
|
|
return _boxcode;
|
|
}
|
|
|
|
set
|
|
{
|
|
_boxcode = value;
|
|
}
|
|
}
|
|
|
|
public string Block
|
|
{
|
|
get
|
|
{
|
|
return _block;
|
|
}
|
|
|
|
set
|
|
{
|
|
_block = value;
|
|
}
|
|
}
|
|
|
|
public string Area
|
|
{
|
|
get
|
|
{
|
|
return _area;
|
|
}
|
|
|
|
set
|
|
{
|
|
_area = value;
|
|
}
|
|
}
|
|
|
|
public string Scanaddress
|
|
{
|
|
get
|
|
{
|
|
return _scanaddress;
|
|
}
|
|
|
|
set
|
|
{
|
|
_scanaddress = value;
|
|
}
|
|
}
|
|
|
|
public int State
|
|
{
|
|
get
|
|
{
|
|
return _state;
|
|
}
|
|
|
|
set
|
|
{
|
|
_state = value;
|
|
}
|
|
}
|
|
|
|
public string Boxshow
|
|
{
|
|
get
|
|
{
|
|
return _boxshow;
|
|
}
|
|
|
|
set
|
|
{
|
|
_boxshow = value;
|
|
}
|
|
}
|
|
|
|
public string Boxshowip
|
|
{
|
|
get
|
|
{
|
|
return _boxshowip;
|
|
}
|
|
|
|
set
|
|
{
|
|
_boxshowip = value;
|
|
}
|
|
}
|
|
|
|
public string Scanip
|
|
{
|
|
get
|
|
{
|
|
return _scanip;
|
|
}
|
|
|
|
set
|
|
{
|
|
_scanip = value;
|
|
}
|
|
}
|
|
|
|
public string Usercode
|
|
{
|
|
get
|
|
{
|
|
return _usercode;
|
|
}
|
|
|
|
set
|
|
{
|
|
_usercode = value;
|
|
}
|
|
}
|
|
}
|
|
}
|