using System; using NPP.SmartSchedue.Api.Contracts.Services.Time.Input; using NPP.SmartSchedue.Api.Contracts.Services.Time.Output; namespace NPP.SmartSchedue.Api.Contracts.Services.Time.Output; /// /// 班次规则映射详情输出 /// public class ShiftRuleMappingGetOutput : ShiftRuleMappingUpdateInput { /// /// 班次信息 /// public ShiftGetOutput Shift { get; set; } /// /// 规则信息 /// public ShiftRuleGetOutput Rule { get; set; } /// /// 创建时间 /// public DateTime? CreatedTime { get; set; } /// /// 修改时间 /// public DateTime? ModifiedTime { get; set; } public string RuleType { get; set; } }