18 lines
562 B
C#
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; }
|
|
}
|
|
} |