lingling
2025-03-14 1b62e001474c3887934d514d7f32dedb55b01cf8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using LifePayment.Domain.Shared;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
 
namespace LifePayment.Application.Contracts
{
 
 
    public class LifePayPhoneMesssageCodeLoginInput : ChannelsBaseInput
    {
        /// <summary>
        /// 手机号
        /// </summary>
        [DisplayName("手机号")]
        [Required(ErrorMessage = "{0}不能为空")]
        [RegularExpression(LifePaymentConstant.RegularExpression.PhoneNumberRegEx, ErrorMessage = "{0}格式错误")]
        public string PhoneNumber { get; set; }
 
 
        /// <summary>
        /// 验证码
        /// </summary>
        //[Required]
        //public string Code { get; set; }
    }
 
}