Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/SysParameter/SysParameterOtherResult.cs

40 lines
860 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.SysParameter
{
public class SysParameterOtherResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:父级id。0为顶级 对应p_value
/// 默认值:
///</summary>
public long Pid { get; set; }
/// <summary>
/// 备 注:参数名称
/// 默认值:
///</summary>
public string PName { get; set; } = null!;
/// <summary>
/// 备 注:枚举值
/// 默认值:
///</summary>
public long PValue { get; set; }
/// <summary>
/// 备 注:排序
/// 默认值:
///</summary>
public int Sort { get; set; }
}
}