yl
2022-10-25 dd651f9ce0156fc7db869da04e0c2004a1811c52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class AnDnDate
    {
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
        public List<AnDnDateSub> children { get; set; }//子节点
    }
    public class AnDnDateSub 
    {
        public string rid { get; set; }  //极光推送用户id
        public string usercode { get; set; }
        public string username { get; set; }
    }
}