using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
///
/// 用户实名认证表
///
[Table(Name = "user_certification")]
public class CertificationEntity : EntityBase
{
///
/// UnionId
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public long UserId { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 姓名
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Name”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Name { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Name”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 性别
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Gender”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Gender { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Gender”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 身份证号码
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“IdCard”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string IdCard { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“IdCard”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 签发地址
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“IssuedAddress”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string IssuedAddress { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“IssuedAddress”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 身份证正面照片
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“PositivePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string PositivePhoto { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“PositivePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 身份证反面照片
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“ReversePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string ReversePhoto { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“ReversePhoto”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 实名状态
///
public int State { get; set; }
}
}