zhanghonglin
12 小时以前 1e6a3ce80c38124fe8750f59956528204e696d4e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.ERP
{
    public class ERPtoken
    {
        public string result { get; set; }
 
        public error error { get; set; } = new error();
 
        public value value { get; set; } = new value();
    }
 
    public class error
    {
        public string code { get; set; }
        public string msg { get; set; }
        public string hint { get; set; }
    }
 
    public class value
    {
        public string accessToken { get; set; }
        public string refreshToken { get; set; }
        public string scope { get; set; }
        public string expiresIn { get; set; }
        public string userId { get; set; }
        public string orgId { get; set; }
        public string appName { get; set; }
        public string refreshExpiresIn { get; set; }
    }
}