using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CRM.Core.DTO.Sms { /// /// 重置密码返回结果 /// public class Retinfo2 { public bool result { get; set; } public string retcode { get; set; } public string retMessage { get; set; } public string retpwd { get; set; } } }