using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Position;
///
/// 岗位缓存列表输出.
///
[SuppressSniffer]
public class PositionCacheListOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 岗位名称.
///
public string fullName { get; set; }
}