服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-16 a592da60f0db0d4eb950a81a8530e965444be7b1
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Tiger.Model
{
    public class USER
    {
        private string _usercode;
        public string USER_CODE
        {
            set { _usercode = value; }
            get { return _usercode; }
        }
 
        private string _pwd;
        public string PASSWORD
        {
            set { _pwd = value; }
            get { return _pwd; }
        }
 
        public string ORG_CODE { get; set; }
        public string POST_CODE { get; set; }
        public string FTY_CODE { get; set; }
        public string PROD_CODE { get; set; }
        public string Token { get; set; }
    }
 
    public class UserInfo: USER
    {
        private string _ip;
        public string ip
        {
            set { _ip = value; }
            get { return _ip; }
        }
 
        private AD_INFO _ad_info;
        public AD_INFO ad_info
        {
            set { _ad_info = value; }
            get { return _ad_info; }
        }
    }
 
}