服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-05-04 c94422ed360de8e75fa62e745689cfa02d53d0ff
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.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class RoleListItem
    {
        public string status { get; set; }
        public string id { get; set; }
        public string roleName { get; set; }
        public string roleValue { get; set; }
        public string func_type { get; set; }
        public string orderNo { get; set; }
        public string createTime { get; set; }
    }
 
    public class SaveRoleParams
    {
        public string ID { get; set; }
        public string ROLE_DESC { get; set; }
        public string ROLE_CODE { get; set; }
        public string IS_ACTIVE { get; set; }
        public List<string> menu { get; set; }
        public bool isUpdate { get; set; }
    }
 
    public class SaveRoleStrictlyParams
    {
        public string ID { get; set; }
        public string ROLE_DESC { get; set; }
        public string ROLE_CODE { get; set; }
        public string IS_ACTIVE { get; set; }
        public checkedMenu menu { get; set; }
        public checkedMenu org { get; set; }
        public checkedMenu wh { get; set; }
        public bool isUpdate { get; set; }
    }
 
    public class checkedMenu
    {
        public List<string> Checked { get; set; }
        public List<string> halfChecked { get; set; }
    }
}