using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WindowsFormsApp1.entity.tb
|
{
|
//淘宝账号登录实体
|
class TBAccountLogin
|
{
|
public static int STATE_INVALID = 0;//失效
|
public static int STATE_VALID = 1;//有效
|
|
private int index;
|
private String nickName;
|
private String tbUid;
|
private String cookie;
|
private int state;
|
private DateTime createTime;
|
private DateTime updateTime;
|
private Boolean login;//是否登录
|
|
public int Index {
|
get { return this.index; }
|
set { this.index = value; }
|
}
|
|
public String NickName {
|
get { return this.nickName; }
|
set { this.nickName = value; }
|
}
|
|
public String TbUid
|
{
|
get { return this.tbUid; }
|
set { this.tbUid = value; }
|
}
|
|
|
public String Cookie
|
{
|
get { return this.cookie; }
|
set { this.cookie = value; }
|
}
|
|
public int State
|
{
|
get { return this.state; }
|
set { this.state = value; }
|
}
|
|
public DateTime CreateTime
|
{
|
get { return this.createTime; }
|
set { this.createTime = value; }
|
}
|
|
|
public DateTime UpdateTime
|
{
|
get { return this.updateTime; }
|
set { this.updateTime = value; }
|
}
|
|
|
public Boolean Login
|
{
|
get { return this.login; }
|
set { this.login = value; }
|
}
|
|
|
}
|
}
|