SGGL_SHJ/SGGL/Model/CQMS/FileCabinetItem.cs

57 lines
870 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
using System;
namespace Model
{
public class FileCabinetItem
{
public string FileCabinetId
{
get;
set;
}
public string ProjectId
{
get;
set;
}
public string FileType
{
get;
set;
}
public string FileCode
{
get;
set;
}
public string FileContent
{
get;
set;
}
public DateTime? FileDate
{
get;
set;
}
public string CreateManId
{
get;
set;
}
public string CreateManName
{
get;
set;
}
public string FileUrl
{
get;
set;
}
}
}