From e08d70b9e610a2c176b88cb092d580754e009de5 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期二, 01 四月 2025 15:41:04 +0800
Subject: [PATCH] 统计

---
 LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs |   90 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 90 insertions(+), 0 deletions(-)

diff --git a/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs b/LifePayment/LifePayment.Application.Contracts/User/QrCodeLogin.cs
index 200721f..b111635 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
 {
@@ -15,6 +17,15 @@
         [Required(ErrorMessage = "{0}涓嶈兘涓虹┖")]
         [RegularExpression(LifePaymentConstant.RegularExpression.PhoneNumberRegEx, ErrorMessage = "{0}鏍煎紡閿欒")]
         public string PhoneNumber { get; set; }
+    }
+
+    public class LifePayUserMesssageByIduserInput : ChannelsBaseInput
+    {
+        /// <summary>
+        /// 鐢ㄦ埛缂栧彿
+        /// </summary>
+        [DisplayName("鐢ㄦ埛缂栧彿")]
+        public Guid Id { get; set; }
     }
 
     public class WxMiniAppIndentityInfo
@@ -39,4 +50,83 @@
         /// </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