username@email.com
2024-06-26 7f26cd7c3e492062418cdc7dbe9d7ce14cbe5f05
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
48
49
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
namespace CoreCms.Net.Model.ViewModels.UI
{
    /// <summary>
    ///     微信接口回调Json实体
    /// </summary>
    public class WebApiCallBack
    {
        /// <summary>
        ///     请求接口返回说明
        /// </summary>
        public string methodDescription { get; set; }
 
 
        /// <summary>
        ///     提交数据
        /// </summary>
        public object otherData { get; set; } = null;
 
        /// <summary>
        ///     状态码
        /// </summary>
        public bool status { get; set; } = false;
 
        /// <summary>
        ///     信息说明。
        /// </summary>
        public string msg { get; set; } = "接口响应成功";
 
        /// <summary>
        ///     返回数据
        /// </summary>
        public object data { get; set; }
 
        /// <summary>
        ///     返回编码
        /// </summary>
        public int code { get; set; } = 0;
    }
}