style: 💄 代码格式整理 (#105)

This commit is contained in:
2024-04-25 21:59:54 +08:00
committed by GitHub
parent 6bd6e62fb6
commit f005da8db3
48 changed files with 199 additions and 196 deletions

View File

@ -12,42 +12,42 @@ public record Sys_VerifyCode : VersionEntity
/// <summary>
/// 验证码
/// </summary>
[JsonIgnore]
[Column(DbType = Chars.FLG_DB_FIELD_TYPE_VARCHAR_7)]
[JsonIgnore]
public virtual string Code { get; init; }
/// <summary>
/// 目标设备
/// </summary>
[JsonIgnore]
[Column(DbType = Chars.FLG_DB_FIELD_TYPE_VARCHAR_63)]
[JsonIgnore]
public virtual string DestDevice { get; init; }
/// <summary>
/// 设备类型
/// </summary>
[JsonIgnore]
[Column]
[JsonIgnore]
public virtual VerifyCodeDeviceTypes DeviceType { get; init; }
/// <summary>
/// 发送报告
/// </summary>
[JsonIgnore]
[Column(DbType = Chars.FLG_DB_FIELD_TYPE_VARCHAR_255)]
[JsonIgnore]
public string Report { get; init; }
/// <summary>
/// 验证码状态
/// </summary>
[JsonIgnore]
[Column]
[JsonIgnore]
public virtual VerifyCodeStatues Status { get; init; }
/// <summary>
/// 验证码类型
/// </summary>
[JsonIgnore]
[Column]
[JsonIgnore]
public virtual VerifyCodeTypes Type { get; init; }
}