using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCommon.Utils { /// /// 日志类型 /// public enum LogType { /// /// 删除日志 /// Sys_DeleteLog = 306, /// /// 打印 /// Print = 313, /// /// 打印 /// AutoHandlerPrint = 314 } }