User新增两个字段,调整它们的中文描述
This commit is contained in:
parent
e0519ca0b5
commit
ee268c8a70
|
@ -29,13 +29,13 @@ public partial interface IUser
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
String? Mail { get; set; }
|
String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
Boolean MailVerified { get; set; }
|
Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
String? Mobile { get; set; }
|
String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
Boolean MobileVerified { get; set; }
|
Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -47,9 +47,9 @@
|
||||||
<Column Name="DisplayName" DataType="String" Description="昵称" />
|
<Column Name="DisplayName" DataType="String" Description="昵称" />
|
||||||
<Column Name="Sex" DataType="Int32" Description="性别。未知、男、女" Type="XCode.Membership.SexKinds" />
|
<Column Name="Sex" DataType="Int32" Description="性别。未知、男、女" Type="XCode.Membership.SexKinds" />
|
||||||
<Column Name="Mail" DataType="String" ItemType="mail" Description="邮件。支持登录" />
|
<Column Name="Mail" DataType="String" ItemType="mail" Description="邮件。支持登录" />
|
||||||
<Column Name="MailVerified" DataType="Boolean" Description="邮箱是否验证。" />
|
<Column Name="MailVerified" DataType="Boolean" Description="邮箱验证。邮箱是否已通过验证" />
|
||||||
<Column Name="Mobile" DataType="String" ItemType="mobile" Description="手机。支持登录" />
|
<Column Name="Mobile" DataType="String" ItemType="mobile" Description="手机。支持登录" />
|
||||||
<Column Name="MobileVerified" DataType="Boolean" Description="手机是否验证。" />
|
<Column Name="MobileVerified" DataType="Boolean" Description="手机验证。手机是否已通过验证" />
|
||||||
<Column Name="Code" DataType="String" Description="代码。身份证、员工编码等,支持登录" />
|
<Column Name="Code" DataType="String" Description="代码。身份证、员工编码等,支持登录" />
|
||||||
<Column Name="AreaId" DataType="Int32" Map="XCode.Membership.Area@Id@Path@AreaPath" Description="地区。省市区" />
|
<Column Name="AreaId" DataType="Int32" Map="XCode.Membership.Area@Id@Path@AreaPath" Description="地区。省市区" />
|
||||||
<Column Name="Avatar" DataType="String" ItemType="image" Length="200" Description="头像" />
|
<Column Name="Avatar" DataType="String" ItemType="image" Length="200" Description="头像" />
|
||||||
|
|
|
@ -117,13 +117,13 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>MailVerified</td>
|
<td>MailVerified</td>
|
||||||
<td>邮箱是否验证</td>
|
<td>邮箱验证</td>
|
||||||
<td>Boolean</td>
|
<td>Boolean</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>N</td>
|
<td>N</td>
|
||||||
<td></td>
|
<td>邮箱是否已通过验证</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -139,13 +139,13 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>MobileVerified</td>
|
<td>MobileVerified</td>
|
||||||
<td>手机是否验证</td>
|
<td>手机验证</td>
|
||||||
<td>Boolean</td>
|
<td>Boolean</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>N</td>
|
<td>N</td>
|
||||||
<td></td>
|
<td>手机是否已通过验证</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -31,13 +31,13 @@ public partial class UserModel : IModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String? Mail { get; set; }
|
public String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String? Mobile { get; set; }
|
public String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -77,11 +77,11 @@ public partial class User : IUser, IEntity<UserModel>
|
||||||
public String? Mail { get => _Mail; set { if (OnPropertyChanging("Mail", value)) { _Mail = value; OnPropertyChanged("Mail"); } } }
|
public String? Mail { get => _Mail; set { if (OnPropertyChanging("Mail", value)) { _Mail = value; OnPropertyChanged("Mail"); } } }
|
||||||
|
|
||||||
private Boolean _MailVerified;
|
private Boolean _MailVerified;
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
[DisplayName("邮箱是否验证")]
|
[DisplayName("邮箱验证")]
|
||||||
[Description("邮箱是否验证。")]
|
[Description("邮箱验证。邮箱是否已通过验证")]
|
||||||
[DataObjectField(false, false, false, 0)]
|
[DataObjectField(false, false, false, 0)]
|
||||||
[BindColumn("MailVerified", "邮箱是否验证。", "")]
|
[BindColumn("MailVerified", "邮箱验证。邮箱是否已通过验证", "")]
|
||||||
public Boolean MailVerified { get => _MailVerified; set { if (OnPropertyChanging("MailVerified", value)) { _MailVerified = value; OnPropertyChanged("MailVerified"); } } }
|
public Boolean MailVerified { get => _MailVerified; set { if (OnPropertyChanging("MailVerified", value)) { _MailVerified = value; OnPropertyChanged("MailVerified"); } } }
|
||||||
|
|
||||||
private String? _Mobile;
|
private String? _Mobile;
|
||||||
|
@ -93,11 +93,11 @@ public partial class User : IUser, IEntity<UserModel>
|
||||||
public String? Mobile { get => _Mobile; set { if (OnPropertyChanging("Mobile", value)) { _Mobile = value; OnPropertyChanged("Mobile"); } } }
|
public String? Mobile { get => _Mobile; set { if (OnPropertyChanging("Mobile", value)) { _Mobile = value; OnPropertyChanged("Mobile"); } } }
|
||||||
|
|
||||||
private Boolean _MobileVerified;
|
private Boolean _MobileVerified;
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
[DisplayName("手机是否验证")]
|
[DisplayName("手机验证")]
|
||||||
[Description("手机是否验证。")]
|
[Description("手机验证。手机是否已通过验证")]
|
||||||
[DataObjectField(false, false, false, 0)]
|
[DataObjectField(false, false, false, 0)]
|
||||||
[BindColumn("MobileVerified", "手机是否验证。", "")]
|
[BindColumn("MobileVerified", "手机验证。手机是否已通过验证", "")]
|
||||||
public Boolean MobileVerified { get => _MobileVerified; set { if (OnPropertyChanging("MobileVerified", value)) { _MobileVerified = value; OnPropertyChanged("MobileVerified"); } } }
|
public Boolean MobileVerified { get => _MobileVerified; set { if (OnPropertyChanging("MobileVerified", value)) { _MobileVerified = value; OnPropertyChanged("MobileVerified"); } } }
|
||||||
|
|
||||||
private String? _Code;
|
private String? _Code;
|
||||||
|
@ -577,13 +577,13 @@ public partial class User : IUser, IEntity<UserModel>
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public static readonly Field Mail = FindByName("Mail");
|
public static readonly Field Mail = FindByName("Mail");
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public static readonly Field MailVerified = FindByName("MailVerified");
|
public static readonly Field MailVerified = FindByName("MailVerified");
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public static readonly Field Mobile = FindByName("Mobile");
|
public static readonly Field Mobile = FindByName("Mobile");
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public static readonly Field MobileVerified = FindByName("MobileVerified");
|
public static readonly Field MobileVerified = FindByName("MobileVerified");
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
@ -691,13 +691,13 @@ public partial class User : IUser, IEntity<UserModel>
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public const String Mail = "Mail";
|
public const String Mail = "Mail";
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public const String MailVerified = "MailVerified";
|
public const String MailVerified = "MailVerified";
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public const String Mobile = "Mobile";
|
public const String Mobile = "Mobile";
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public const String MobileVerified = "MobileVerified";
|
public const String MobileVerified = "MobileVerified";
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -44,9 +44,9 @@ public partial class UserTT
|
||||||
[DisplayName("邮件")]
|
[DisplayName("邮件")]
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
[Description("邮箱是否验证。")]
|
[Description("邮箱验证。邮箱是否已通过验证")]
|
||||||
[DisplayName("邮箱是否验证")]
|
[DisplayName("邮箱验证")]
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
|
@ -54,9 +54,9 @@ public partial class UserTT
|
||||||
[DisplayName("手机")]
|
[DisplayName("手机")]
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
[Description("手机是否验证。")]
|
[Description("手机验证。手机是否已通过验证")]
|
||||||
[DisplayName("手机是否验证")]
|
[DisplayName("手机验证")]
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial interface IUser
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
String? Mail { get; set; }
|
String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
Boolean MailVerified { get; set; }
|
Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
String? Mobile { get; set; }
|
String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
Boolean MobileVerified { get; set; }
|
Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial class UserDto
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String? Mail { get; set; }
|
public String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String? Mobile { get; set; }
|
public String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial interface IUserModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
String? Mail { get; set; }
|
String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
Boolean MailVerified { get; set; }
|
Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
String? Mobile { get; set; }
|
String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
Boolean MobileVerified { get; set; }
|
Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial class UserModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String? Mail { get; set; }
|
public String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String? Mobile { get; set; }
|
public String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -44,9 +44,9 @@ public partial class User : MyEntityBase
|
||||||
[DisplayName("邮件")]
|
[DisplayName("邮件")]
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
[Description("邮箱是否验证。")]
|
[Description("邮箱验证。邮箱是否已通过验证")]
|
||||||
[DisplayName("邮箱是否验证")]
|
[DisplayName("邮箱验证")]
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
|
@ -54,9 +54,9 @@ public partial class User : MyEntityBase
|
||||||
[DisplayName("手机")]
|
[DisplayName("手机")]
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
[Description("手机是否验证。")]
|
[Description("手机验证。手机是否已通过验证")]
|
||||||
[DisplayName("手机是否验证")]
|
[DisplayName("手机验证")]
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -31,13 +31,13 @@ public partial class ExtendUser : Object, IxxUser, IModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -31,13 +31,13 @@ public partial class ExtendUser2 : IModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial interface IxxUser : NewLife.Data.IModel
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
String? Mail { get; set; }
|
String? Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
Boolean MailVerified { get; set; }
|
Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
String? Mobile { get; set; }
|
String? Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
Boolean MobileVerified { get; set; }
|
Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -45,9 +45,9 @@ public partial class User
|
||||||
[DisplayName("邮件")]
|
[DisplayName("邮件")]
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
[Description("邮箱是否验证。")]
|
[Description("邮箱验证。邮箱是否已通过验证")]
|
||||||
[DisplayName("邮箱是否验证")]
|
[DisplayName("邮箱验证")]
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
|
@ -55,9 +55,9 @@ public partial class User
|
||||||
[DisplayName("手机")]
|
[DisplayName("手机")]
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
[Description("手机是否验证。")]
|
[Description("手机验证。手机是否已通过验证")]
|
||||||
[DisplayName("手机是否验证")]
|
[DisplayName("手机验证")]
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial class PureUser : Object, IxxUser
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -29,13 +29,13 @@ public partial class User
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public String Mail { get; set; }
|
public String Mail { get; set; }
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public Boolean MailVerified { get; set; }
|
public Boolean MailVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public String Mobile { get; set; }
|
public String Mobile { get; set; }
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public Boolean MobileVerified { get; set; }
|
public Boolean MobileVerified { get; set; }
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -78,11 +78,11 @@ public partial class User
|
||||||
public String? Mail { get => _Mail; set { if (OnPropertyChanging("Mail", value)) { _Mail = value; OnPropertyChanged("Mail"); } } }
|
public String? Mail { get => _Mail; set { if (OnPropertyChanging("Mail", value)) { _Mail = value; OnPropertyChanged("Mail"); } } }
|
||||||
|
|
||||||
private Boolean _MailVerified;
|
private Boolean _MailVerified;
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
[DisplayName("邮箱是否验证")]
|
[DisplayName("邮箱验证")]
|
||||||
[Description("邮箱是否验证。")]
|
[Description("邮箱验证。邮箱是否已通过验证")]
|
||||||
[DataObjectField(false, false, false, 0)]
|
[DataObjectField(false, false, false, 0)]
|
||||||
[BindColumn("MailVerified", "邮箱是否验证。", "")]
|
[BindColumn("MailVerified", "邮箱验证。邮箱是否已通过验证", "")]
|
||||||
public Boolean MailVerified { get => _MailVerified; set { if (OnPropertyChanging("MailVerified", value)) { _MailVerified = value; OnPropertyChanged("MailVerified"); } } }
|
public Boolean MailVerified { get => _MailVerified; set { if (OnPropertyChanging("MailVerified", value)) { _MailVerified = value; OnPropertyChanged("MailVerified"); } } }
|
||||||
|
|
||||||
private String? _Mobile;
|
private String? _Mobile;
|
||||||
|
@ -94,11 +94,11 @@ public partial class User
|
||||||
public String? Mobile { get => _Mobile; set { if (OnPropertyChanging("Mobile", value)) { _Mobile = value; OnPropertyChanged("Mobile"); } } }
|
public String? Mobile { get => _Mobile; set { if (OnPropertyChanging("Mobile", value)) { _Mobile = value; OnPropertyChanged("Mobile"); } } }
|
||||||
|
|
||||||
private Boolean _MobileVerified;
|
private Boolean _MobileVerified;
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
[DisplayName("手机是否验证")]
|
[DisplayName("手机验证")]
|
||||||
[Description("手机是否验证。")]
|
[Description("手机验证。手机是否已通过验证")]
|
||||||
[DataObjectField(false, false, false, 0)]
|
[DataObjectField(false, false, false, 0)]
|
||||||
[BindColumn("MobileVerified", "手机是否验证。", "")]
|
[BindColumn("MobileVerified", "手机验证。手机是否已通过验证", "")]
|
||||||
public Boolean MobileVerified { get => _MobileVerified; set { if (OnPropertyChanging("MobileVerified", value)) { _MobileVerified = value; OnPropertyChanged("MobileVerified"); } } }
|
public Boolean MobileVerified { get => _MobileVerified; set { if (OnPropertyChanging("MobileVerified", value)) { _MobileVerified = value; OnPropertyChanged("MobileVerified"); } } }
|
||||||
|
|
||||||
private String? _Code;
|
private String? _Code;
|
||||||
|
@ -583,13 +583,13 @@ public partial class User
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public static readonly Field Mail = FindByName("Mail");
|
public static readonly Field Mail = FindByName("Mail");
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public static readonly Field MailVerified = FindByName("MailVerified");
|
public static readonly Field MailVerified = FindByName("MailVerified");
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public static readonly Field Mobile = FindByName("Mobile");
|
public static readonly Field Mobile = FindByName("Mobile");
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public static readonly Field MobileVerified = FindByName("MobileVerified");
|
public static readonly Field MobileVerified = FindByName("MobileVerified");
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
@ -697,13 +697,13 @@ public partial class User
|
||||||
/// <summary>邮件。支持登录</summary>
|
/// <summary>邮件。支持登录</summary>
|
||||||
public const String Mail = "Mail";
|
public const String Mail = "Mail";
|
||||||
|
|
||||||
/// <summary>邮箱是否验证。</summary>
|
/// <summary>邮箱验证。邮箱是否已通过验证</summary>
|
||||||
public const String MailVerified = "MailVerified";
|
public const String MailVerified = "MailVerified";
|
||||||
|
|
||||||
/// <summary>手机。支持登录</summary>
|
/// <summary>手机。支持登录</summary>
|
||||||
public const String Mobile = "Mobile";
|
public const String Mobile = "Mobile";
|
||||||
|
|
||||||
/// <summary>手机是否验证。</summary>
|
/// <summary>手机验证。手机是否已通过验证</summary>
|
||||||
public const String MobileVerified = "MobileVerified";
|
public const String MobileVerified = "MobileVerified";
|
||||||
|
|
||||||
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
/// <summary>代码。身份证、员工编码等,支持登录</summary>
|
||||||
|
|
|
@ -77,11 +77,11 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
||||||
<PackageReference Include="NewLife.Core" Version="11.0.2024.917-beta0004" />
|
<PackageReference Include="NewLife.Core" Version="11.0.2024.927-beta1339" />
|
||||||
<PackageReference Include="NewLife.IP" Version="2.2.2024.902" />
|
<PackageReference Include="NewLife.IP" Version="2.2.2024.902" />
|
||||||
<PackageReference Include="NewLife.UnitTest" Version="1.0.2024.102-beta0146" />
|
<PackageReference Include="NewLife.UnitTest" Version="1.0.2024.102-beta0146" />
|
||||||
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="8.0.0" />
|
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="8.0.0" />
|
||||||
<PackageReference Include="xunit" Version="2.9.0" />
|
<PackageReference Include="xunit" Version="2.9.2" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
|
Loading…
Reference in New Issue