移动系统liao
2024-12-11 c573732636815e569d24aacff11a82f93602585a
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
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
using System.ComponentModel;
 
namespace CoreCms.Net.Model.ViewModels.DTO
{
    /// <summary>
    /// </summary>
    public class ManagerDto
    {
        /// <summary>
        ///     序列
        /// </summary>
        [DisplayName("序列")]
        public int Id { get; set; }
 
        /// <summary>
        ///     用户名
        /// </summary>
        [DisplayName("用户名")]
        public string UserName { get; set; }
 
        /// <summary>
        ///     昵称
        /// </summary>
        [DisplayName("昵称")]
        public string NickName { get; set; }
 
        /// <summary>
        ///     描述
        /// </summary>
        [DisplayName("描述")]
        public string Description { get; set; }
    }
}