using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.PersonnelModule
{
public class AiPerformanceAnalysisDtos
{
}
public class AiPerformanceAnalysis_UserListDto : DtoBase
{
///
/// 筛选条件 公司/部门/岗位/用户
///
public string ScreeningCriteria { get; set; }
}
///
/// 字符串格式化DTO - 支持动态参数字符串格式化
///
public class StringFormatDto
{
///
/// 格式化模板字符串,使用 {0}, {1}, {2} 等占位符
/// 示例: "名称:{0} -- 编号:{1}"
///
public string FormatTemplate { get; set; }
///
/// 格式化参数列表,按顺序对应模板中的占位符 {0}, {1}, {2} 等
///
public List Parameters { get; set; } = new List();
}
}