133 lines
2.3 KiB
C#
133 lines
2.3 KiB
C#
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;
|
|
}
|
|
}
|
|
}
|