ChouBox/ChouBox.Model/Entities/Code.cs
2025-04-23 19:20:23 +08:00

41 lines
769 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 短信记录
/// </summary>
public partial class Code
{
/// <summary>
/// 验证码id
/// </summary>
public uint Id { get; set; }
/// <summary>
/// 手机号
/// </summary>
public string Phone { get; set; } = null!;
/// <summary>
/// 验证码
/// </summary>
public string Code1 { get; set; } = null!;
/// <summary>
/// 添加时间
/// </summary>
public int Addtime { get; set; }
/// <summary>
/// 类型1 登录注册
/// </summary>
public bool Type { get; set; }
/// <summary>
/// 状态 0正常-1失效
/// </summary>
public bool Status { get; set; }
}