using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
public class LoginCodeRequest
{
///
/// 电话
///
public string Phone { get; set; }
///
/// 验证码
///
public string Code { get; set; }
///
/// 登录类型 1:Android;2Ios;3扫码;4:H5
///
public int loginType { get; set; } = 1;
}
}