yl
2023-04-21 6e1231595e0e72b0fa421711d34bc77d3b406a4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
    }
}