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; } } }