1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
- public class RequestVerificationCode
- {
- /// <summary>
- /// 手机号
- /// </summary>
- public string phone
- {
- get; set;
- }
- /// <summary>
- /// 发送类型:1,注册发送验证码;2,忘记密码发送验证码
- /// </summary>
- public int sendType
- {
- get; set;
- }
- }
- }
|