73 lines
2.4 KiB
C#
73 lines
2.4 KiB
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace WPFUI.Test
|
|
{
|
|
[Serializable]
|
|
public partial class UserInfoVO : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
public string _accountName;
|
|
[ObservableProperty]
|
|
|
|
public string _nameCn;
|
|
[ObservableProperty]
|
|
|
|
public string _phone;
|
|
|
|
|
|
[ObservableProperty]
|
|
|
|
public string _companyNameCn;
|
|
|
|
public string UserCode { get; set; }
|
|
public string NameEn { get; set; }
|
|
public string Nickname { get; set; }
|
|
public string IsDimission { get; set; }
|
|
public string Education { get; set; }
|
|
public string Seniority { get; set; }
|
|
public string Sex { get; set; }
|
|
public string Age { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public string ProvinceCode { get; set; }
|
|
public string CityCode { get; set; }
|
|
public string Email { get; set; }
|
|
|
|
public string Address { get; set; }
|
|
public string EmployeeNum { get; set; }
|
|
public string Position { get; set; }
|
|
public string ProfessionalPost { get; set; }
|
|
public string CompanyCode { get; set; }
|
|
public string DepartmentCode { get; set; }
|
|
public string Sources { get; set; }
|
|
public string Description { get; set; }
|
|
public string TelPhone { get; set; }
|
|
public string CompanyId { get; set; }
|
|
public string FinishPercentage { get; set; }
|
|
public string Identifier { get; set; }
|
|
public string Id { get; set; }
|
|
public string IsDeleted { get; set; }
|
|
public string CreatedBy { get; set; }
|
|
public string CreationTime { get; set; }
|
|
public string UpdatedBy { get; set; }
|
|
public string UpdateTime { get; set; }
|
|
public string DeptParentCode { get; set; }
|
|
public string DeptNameCn { get; set; }
|
|
public int UnitType { get; set; }
|
|
|
|
public string DeptNameEn { get; set; }
|
|
public string DeptPath { get; set; }
|
|
public string DeptPathName { get; set; }
|
|
|
|
public string CompanyNameEn { get; set; }
|
|
public string CompanyAddress { get; set; }
|
|
public Permission Permission { get; set; }
|
|
public List<AuthOperation> AuthOperation { get; set; }
|
|
public bool Deleted { get; set; }
|
|
//密码
|
|
public string Password { get; set; }
|
|
|
|
public bool IsSuperAdmin { get; set; }
|
|
}
|
|
|
|
}
|