Files
zszq-trs/YLErpDAL/Model/ExcelDeclareModel.cs
2024-05-09 14:06:26 +08:00

18 lines
562 B
C#

namespace YLErp.Model
{
public class ExcelDeclareModel
{
public string Number { get; set; }
public string Name { get; set; }
public string ReportFrom { get; set; }
public string ReportEnd { get; set; }
public string CurTime { get; set; }
public string CurUser { get; set; }
public string Company { get; set; }
public string CurDay { get; set; }
public string Title { get; set; }
public List<string> DescList { get; set; }
public string Desc { get; set; }
}
}