using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiobon.Core.OPS.Tool.OPS.Tool.Model { /// /// 信息 /// public class Info { /// /// 数量 /// public int Count { set; get; } /// /// 日志 /// public string Log { set; get; } /// /// 表名称 /// public string Table { set; get; } } }