25 lines
722 B
C#
25 lines
722 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Intranet;
|
|||
|
|
|
|||
|
|
public class JobPositionDto : FullAuditedEntityDto<string>
|
|||
|
|
{
|
|||
|
|
public Guid? TenantId { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
|
|||
|
|
public Guid? DepartmentId { get; set; }
|
|||
|
|
public string DepartmentName { get; set; }
|
|||
|
|
|
|||
|
|
public string Level { get; set; }
|
|||
|
|
public decimal MinSalary { get; set; }
|
|||
|
|
public decimal MaxSalary { get; set; }
|
|||
|
|
public string Currency { get; set; }
|
|||
|
|
public string RequiredSkills { get; set; }
|
|||
|
|
public string Responsibilities { get; set; }
|
|||
|
|
public string Qualifications { get; set; }
|
|||
|
|
public bool IsActive { get; set; }
|
|||
|
|
}
|