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
22
using HStation.Service.Organize;
 
namespace HStation.Dto
{
    public class AddUserLoginMapDto
    {
        /// <summary>
        /// 登录ID
        /// </summary>
        public long LoginID { get; set; }
 
        /// <summary>
        /// 登录类型
        /// </summary>
        public eObjectType ObjectType { get; set; }
 
        /// <summary>
        /// 员工ID
        /// </summary>
        public long ObjectID { get; set; }
    }
}