using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Ewide.Core; namespace Vote.Services.Entities { /// /// /// [Serializable] public class nbzc_sms_code : DEntityBase { /// /// 手机号码 /// [DisplayName("手机号码")] public string phone { get; set; } /// /// 验证码 /// [DisplayName("验证码")] public string code { get; set; } /// /// 过期时间 /// [DisplayName("过期时间")] public DateTime expire_time { get; set; } } }