2026-01-10 13:47:54 +08:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace MDM.Model.Process.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 控制策略字典查询对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProcessControlStrategyDictQueryDto : PagerInfo
|
|
|
|
|
{
|
|
|
|
|
public string? StrategyCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? StrategyName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 控制策略字典输入输出对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProcessControlStrategyDictDto
|
|
|
|
|
{
|
|
|
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
|
|
|
public int StrategyId { get; set; }
|
|
|
|
|
|
|
|
|
|
[Required(ErrorMessage = "策略code不能为空")]
|
2026-01-12 11:13:10 +08:00
|
|
|
public string? StrategyCode { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public string? StrategyName { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public string? Description { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
public int? IsActive { get; set; }
|
|
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public string? CreatedBy { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public DateTime CreatedTime { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public string? UpdatedBy { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-12 11:13:10 +08:00
|
|
|
public DateTime UpdatedTime { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|