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