using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.RequestMod { public class ReqestForgetUserPwd { /// /// 手机或邮箱 /// public string phone { get; set; } /// /// 验证码 /// public string verification { get; set; } /// /// 新密码 /// public string newPwd { get; set; } } }