|
@@ -0,0 +1,53 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace IMES_Middleware_Platform.Api.Services.Association
|
|
|
+{
|
|
|
+ public class UserLogin
|
|
|
+ {
|
|
|
+ public string Email { get; set; }
|
|
|
+ public string Mobile { get; set; }
|
|
|
+ public string Name { get; set; }
|
|
|
+ public string Password { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 启用测试账户信息
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public UserLogin TestLogin() {
|
|
|
+ return new UserLogin() {
|
|
|
+ Email = "15626196105",
|
|
|
+ Mobile = "15626196105",
|
|
|
+ Name = "15626196105",
|
|
|
+ Password = "Qq15626196105"
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class UserResponseDto
|
|
|
+ {
|
|
|
+ public object IdentityName { get; set; }
|
|
|
+ public string Mobile { get; set; }
|
|
|
+ public object PhotoId { get; set; }
|
|
|
+ public bool Admin { get; set; }
|
|
|
+ public string Token { get; set; }
|
|
|
+ public string Password { get; set; }
|
|
|
+ public long CreatedDate { get; set; }
|
|
|
+ public int CreatedBy { get; set; }
|
|
|
+ public object IdentityId { get; set; }
|
|
|
+ public bool Disable { get; set; }
|
|
|
+ public string Name { get; set; }
|
|
|
+ public long ModifiedDate { get; set; }
|
|
|
+ public int ModifiedBy { get; set; }
|
|
|
+ public int Id { get; set; }
|
|
|
+ public int Age { get; set; }
|
|
|
+ public string Email { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|