update:操作日志特性

This commit is contained in:
2021-07-13 16:17:30 +08:00
parent 1011b98bab
commit 04aa632a94
4 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ewide.Core.Attributes
{
public class OpAttribute : Attribute
{
private readonly LogOpType logOpType;
public OpAttribute(LogOpType logOpType)
{
this.logOpType = logOpType;
}
public int OpType { get => (int)logOpType; }
}
}