提交代码
This commit is contained in:
@@ -0,0 +1,132 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class SubUnitReportItemItem
|
||||
{
|
||||
/// <summary>
|
||||
/// 子公司上传明细id
|
||||
/// </summary>
|
||||
|
||||
public string SubUnitReportItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 子公司上传id
|
||||
/// </summary>
|
||||
|
||||
public string SubUnitReportId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 子单位
|
||||
/// </summary>
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 要求上报时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? PlanReortDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
|
||||
public string ReportTitle
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 内容
|
||||
/// </summary>
|
||||
|
||||
public string ReportContent
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 上报时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? ReportDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
|
||||
public string State
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件字节
|
||||
/// </summary>
|
||||
|
||||
public List<byte[]> FileContext
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件表主键
|
||||
/// </summary>
|
||||
|
||||
public string AttachFileId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///对应主键
|
||||
/// </summary>
|
||||
|
||||
public string ToKeyId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件转换
|
||||
/// </summary>
|
||||
|
||||
public string AttachSource
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件路径
|
||||
/// </summary>
|
||||
|
||||
public string AttachUrl
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user