lixiaojun
2024-09-23 81819f13e1e3a49bf8456051ec0f0b51e3f10821
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using HStation.Service.Organize;
 
namespace HStation.Dto
{
    public class AddUserLoginAccount
    {    /// <summary>
         /// 登录名
         /// </summary>
        public string LoginName { get; set; }
 
        /// <summary>
        /// 密码
        /// </summary>
        public string PassWord { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime CreateTime { get; set; }
    }
}