admin
2020-06-17 9d3d08ba960fc739498b0648d57eaf2c50a40fd1
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
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; }
        }
 
 
    }
}