From 4d78f12d6d42939c01d33ffa75c77816db31e222 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 25 三月 2025 10:38:48 +0800
Subject: [PATCH] fix: s
---
LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs | 80 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 80 insertions(+), 0 deletions(-)
diff --git a/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs b/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs
index 200721f..ff5a602 100644
--- a/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs
+++ b/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs
@@ -1,6 +1,8 @@
锘縰sing LifePayment.Domain.Shared;
+using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
+using ZeroD.Util;
namespace LifePayment.Application.Contracts
{
@@ -39,4 +41,82 @@
/// </summary>
public string UnionId { get; set; }
}
+
+ public class CreateAccountInput
+ {
+ /// <summary>
+ /// 鍚嶇О
+ /// </summary>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// 瀵嗙爜
+ /// </summary>
+ public string Password { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛鍚�
+ /// </summary>
+ //[RegularExpression(LifePaymentConstant.RegularExpression.UserNameEx, ErrorMessage = "璐﹀彿鏍煎紡涓嶆纭�")]
+ public string UserName { get; set; }
+ /// <summary>
+ /// 澶囨敞
+ /// </summary>
+ public string Remark { get; set; }
+
+ /// <summary>
+ /// 鎵嬫満鍙�
+ /// </summary>
+ public string PhoneNumber { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛绔疘d
+ /// </summary>
+ public string ClientId { get; set; } = Constant.ClientType.Back;
+
+ /// <summary>
+ /// 瑙掕壊
+ /// </summary>
+ public string[] RoleNames { get; set; }
+
+ /// <summary>
+ /// 娓犻亾鍒楄〃
+ /// </summary>
+ public string[] ChannlesId { get; set; }
+
+ /// <summary>
+ /// 灏忕▼搴廜penId
+ /// </summary>
+ public string OpenId { get; set; }
+
+ ///// <summary>
+ ///// 鑱旂郴浜�
+ ///// </summary>
+ // public string Contact { get; set; }
+
+ /// <summary>
+ /// 浼佷笟鍚嶇О
+ /// </summary>
+ public string EnterpriseName { get; set; }
+
+ /// <summary>
+ /// 浼佷笟绫诲瀷
+ /// </summary>
+ public EnterpriseTypeEnum? AuthType { get; set; }
+
+ /// <summary>
+ /// MatchMaking灏忕▼搴廜penId
+ /// </summary>
+ public string MatchMakingOpenId { get; set; }
+
+ /// <summary>
+ /// 缁勭粐鏋舵瀯鍏徃id
+ /// </summary>
+ public Guid? CompanyOrgId { get; set; }
+
+ /// <summary>
+ /// 缁勭粐鏋舵瀯閮ㄩ棬id
+ /// </summary>
+ public Guid? DepartmentOrgId { get; set; }
+ }
}
\ No newline at end of file
--
Gitblit v1.9.1