| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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
- {
- /// <summary>
- /// 筛选条件 公司/部门/岗位/用户
- /// </summary>
- public string ScreeningCriteria { get; set; }
- }
- /// <summary>
- /// 字符串格式化DTO - 支持动态参数字符串格式化
- /// </summary>
- public class StringFormatDto
- {
- /// <summary>
- /// 格式化模板字符串,使用 {0}, {1}, {2} 等占位符
- /// 示例: "名称:{0} -- 编号:{1}"
- /// </summary>
- public string FormatTemplate { get; set; }
- /// <summary>
- /// 格式化参数列表,按顺序对应模板中的占位符 {0}, {1}, {2} 等
- /// </summary>
- public List<string> Parameters { get; set; } = new List<string>();
- }
- }
|