16 lines
307 B
C#
16 lines
307 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Hr;
|
|||
|
|
|
|||
|
|
public class JobPositionDto : FullAuditedEntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid? TenantId { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
public Guid DepartmentId { get; set; }
|
|||
|
|
|
|||
|
|
public Guid? ParentId { get; set; }
|
|||
|
|
}
|