Files
tnb.server/common/Tnb.Common/Models/NPOI/ExcelTemplateModel.cs
2024-04-23 10:16:16 +08:00

29 lines
602 B
C#
Raw Permalink 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
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期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; }
}