using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Util.Offices { public class TemplateMode { /// /// 行号 /// public int row { get; set; } /// /// 列号 /// public int cell { get; set; } /// /// 数据值 /// public string value { get; set; } } }