添加 共赴宁波之春 报名网页
This commit is contained in:
37
20220330_Vote/Vote.Services/Entities/nbzc_sms_code.cs
Normal file
37
20220330_Vote/Vote.Services/Entities/nbzc_sms_code.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class nbzc_sms_code : DEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 手机号码
|
||||
/// </summary>
|
||||
[DisplayName("手机号码")]
|
||||
public string phone { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 验证码
|
||||
/// </summary>
|
||||
[DisplayName("验证码")]
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 过期时间
|
||||
/// </summary>
|
||||
[DisplayName("过期时间")]
|
||||
public DateTime expire_time { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user