移动系统liao
2024-07-30 306ab8865840b2637590abb6e670e5614446f24d
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
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
namespace CoreCms.Net.Model.ViewModels.UI
{
    /// <summary>
    ///     LayUIAdmin后端UI回调Json实体
    /// </summary>
    public class AdminUiCallBack
    {
        /// <summary>
        ///     状态码(ok = 0, error = 1, timeout = 401)
        /// </summary>
        public int code { get; set; } = 1;
 
        /// <summary>
        ///     可选。信息内容。
        /// </summary>
        public string msg { get; set; } = "空数据返回";
 
        public object data { get; set; }
 
        public object otherData { get; set; }
 
        public int count { get; set; }
      
    }
 
    public class OtherData
    {
        public decimal heji1 { get; set; }
        public decimal heji2 { get; set; }
        public decimal heji3 { get; set; }
 
        public decimal heji4 { get; set; }
        public decimal heji5 { get; set; }
        public decimal heji6 { get; set; }
    }
}