zhengyuxuan
2025-03-31 ecf7e9c83e733408f22fa3ca9a79d04029728721
LifePayment/LifePayment.Application.Contracts/User/CreateBackClientUserInput.cs
@@ -1,5 +1,7 @@
using System;
using LifePayment.Domain.Shared;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ZeroD.Util;
namespace LifePayment.Application.Contracts
@@ -17,8 +19,14 @@
        public string PhoneNumber { get; set; }
        /// <summary>
        /// 密码
        /// </summary>
        public string Password { get; set; }
        /// <summary>
        /// 账户
        /// </summary>
        //[RegularExpression(LifePaymentConstant.RegularExpression.UserNameEx, ErrorMessage = "账号格式不正确")]
        public string UserName { get; set; }
        public string Remark { get; set; }
@@ -31,7 +39,7 @@
        /// <summary>
        /// 渠道列表
        /// </summary>
        public Guid[] ChannlesId { get; set; }
        public string[] ChannlesId { get; set; }
        /// <summary>
        /// 组织架构公司id
@@ -80,6 +88,16 @@
        public string Remark { get; set; }
    }
    /// <summary>
    /// 重置密码基础输入参数
    /// </summary>
    public class ResetPasswordBaseInput
    {
        public Guid UserId { get; set; }
        public string? Password { get; set; }
    }
    public class UpdateBackClientUserInput : CreateBackClientUserInput
    {
        /// <summary>