mh_frame_sps/APT.Infrastructure.Core/Structs/CodeRuleParam.cs

25 lines
412 B
C#
Raw Permalink Normal View History

2026-04-07 13:47:52 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Infrastructure.Core
{
public class CodeRuleParam
{
public CodeRuleParam()
{
this.IsUpdate = true;
this.Time = DateTime.Now;
}
public Guid? OrgId { get; set; }
public int CodeType { get; set; }
public int Count { get; set; }
public bool IsUpdate { get; set; }
public DateTime Time { get; set; }
}
}