helongyang
3 小时以前 ac8813cde64f7bf9882657416a1d102191aae960
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_Core/Attributes/CodeRuleAttribute.cs
@@ -3,6 +3,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.CodeConfigEnum;
using WIDESEA_Core.Enums;
namespace WIDESEA_Core.Attributes
@@ -10,8 +11,8 @@
    [AttributeUsage(AttributeTargets.Property)]
    public class CodeRuleAttribute : Attribute
    {
        public RuleCode RuleCode { get; set; }
        public CodeRuleAttribute(RuleCode ruleCode)
        public RuleCodeEnum RuleCode { get; set; }
        public CodeRuleAttribute(RuleCodeEnum ruleCode)
        {
            RuleCode = ruleCode;
        }