You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.6 KiB
67 lines
3.6 KiB
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace Znyc.CloudCar.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户实名认证表
|
||
|
/// </summary>
|
||
|
[Table(Name = "user_certification")]
|
||
|
public class CertificationEntity : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// UnionId
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public long UserId { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 姓名
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Name”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string Name { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Name”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 性别
|
||
|
/// </summary>
|
||
|
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Gender”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string Gender { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Gender”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 身份证号码
|
||
|
/// </summary>
|
||
|
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“IdCard”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string IdCard { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“IdCard”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 签发地址
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“IssuedAddress”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string IssuedAddress { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“IssuedAddress”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 身份证正面照片
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“PositivePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string PositivePhoto { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“PositivePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 身份证反面照片
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“ReversePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string ReversePhoto { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“ReversePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 实名状态
|
||
|
/// </summary>
|
||
|
public int State { get; set; }
|
||
|
}
|
||
|
}
|