季铭对接T+畅捷通,看板API
yl
2023-12-25 a0d937e939fc11713021a146b925cd7035d9a744
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class User
    {
        public string guid { get; set; }
        public int userid { get; set; }
        public string usercode { get; set; }
        public string username { get; set; }
        public string password { get; set; }
        public string usertype { get; set; }
        public string rediskey { get; set; }
        public string stu_torgcode { get; set; }
        public string stu_torgname { get; set; }
        public string description { get; set; }
    }
}