sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Hr/JobPositionDto.cs

16 lines
307 B
C#
Raw Normal View History

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; }
}