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