You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
963 B
C#
29 lines
963 B
C#
namespace Hcrm.DTO;
|
|
|
|
public class EmployeeDto
|
|
{
|
|
public string tb_Employee_ID { get; set; } = string.Empty;
|
|
public string EmployeeID { get; set; } = string.Empty;
|
|
public string EmployeeName { get; set; } = string.Empty;
|
|
public int? Sex { get; set; }
|
|
public string? Photo { get; set; }
|
|
public string? Mobile { get; set; }
|
|
public string? Telephone { get; set; }
|
|
public string? HospitalID { get; set; }
|
|
public string? HospitalName { get; set; }
|
|
public string? DepartmentID { get; set; }
|
|
public string? ConsultGroupID { get; set; }
|
|
public SysRoleDto? Role { get; set; }
|
|
public int? LookMobile { get; set; }
|
|
public int? LookCredentialCode { get; set; }
|
|
public bool LookName { get; set; } = true;
|
|
public bool IsDoctor { get; set; }
|
|
}
|
|
|
|
public class SysRoleDto
|
|
{
|
|
public string tb_SysRole_ID { get; set; } = string.Empty;
|
|
public string? RCode { get; set; }
|
|
public string? RoleName { get; set; }
|
|
}
|