xinjiang/SGGL/Model/CQMS/FileCabinetItem.cs

60 lines
942 B
C#
Raw Permalink Normal View History

2024-11-19 09:45:27 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
}
}
}