You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
770 B
36 lines
770 B
2 years ago
|
using System;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 行业岗位输出对象模型
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class IndustryJobsInputDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 父级id
|
||
|
/// </summary>
|
||
|
public long ParentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
public long Sort { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否启用
|
||
|
/// </summary>
|
||
|
public bool IsEnabled { get; set; }
|
||
|
}
|
||
|
}
|