Files
tnb.server/common/Tnb.Common/Models/NPOI/ExcelTemplateModel.cs
2023-03-13 15:00:34 +08:00

28 lines
571 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Common.Models.NPOI;
/// <summary>
/// Excel导出模板
/// 版 本V3.0.0
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2017.03.09.
/// </summary>
[SuppressSniffer]
public class ExcelTemplateModel
{
/// <summary>
/// 行号.
/// </summary>
public int row { get; set; }
/// <summary>
/// 列号.
/// </summary>
public int cell { get; set; }
/// <summary>
/// 数据值.
/// </summary>
public string? value { get; set; }
}