xinjiang/SGGL/Model/APIItem/HSSE/GoodsManageItem.cs

224 lines
4.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
/// <summary>
/// 物质出门数据项
/// </summary>
public class GoodsManageItem
{
/// <summary>
/// 物质出门ID
/// </summary>
public string GoodsManageId
{
get;
set;
}
/// <summary>
/// 项目ID
/// </summary>
public string ProjectId
{
get;
set;
}
/// <summary>
/// 申请单位ID
/// </summary>
public string ApplyUnitId
{
get;
set;
}
/// <summary>
/// 申请单位名称
/// </summary>
public string ApplyUnitName
{
get;
set;
}
/// <summary>
/// 申请人ID
/// </summary>
public string ApplyManId
{
get;
set;
}
/// <summary>
/// 申请人名称
/// </summary>
public string ApplyManName
{
get;
set;
}
/// <summary>
/// 申请时间
/// </summary>
public string ApplyTime
{
get;
set;
}
/// <summary>
/// 出门原因
/// </summary>
public string OutReasons
{
get;
set;
}
/// <summary>
/// 运输工具(车牌号)
/// </summary>
public string CarNum
{
get;
set;
}
/// <summary>
/// 是否返回
/// </summary>
public bool BeBack
{
get;
set;
} = false;
/// <summary>
/// 返回时间
/// </summary>
public string BackTime
{
get;
set;
}
/// <summary>
/// 状态0-待提交1-审核中2-审核完成;-1作废
/// </summary>
public string States
{
get;
set;
}
/// <summary>
/// 附件
/// </summary>
public string AttachUrl
{
get;
set;
}
/// <summary>
/// 获取物资明细
/// </summary>
public List<GoodsManageItemItem> GoodsManageItemItemList
{
get;
set;
}
/// <summary>
/// 获取审核记录明细
/// </summary>
public List<FlowOperateItem> FlowOperateItemList
{
get;
set;
}
/// <summary>
/// 当前办理步骤名称
/// </summary>
public string OperateName
{
get;
set;
}
/// <summary>
/// 当前办理步骤
/// </summary>
public int SortIndex
{
get;
set;
}
/// <summary>
/// 办理人ID
/// </summary>
public string OperaterManId
{
get;
set;
}
/// <summary>
/// 办理人姓名
/// </summary>
public string OperaterManName
{
get;
set;
}
/// <summary>
/// 是否同意
/// </summary>
public bool IsAgree
{
get;
set;
} = true;
/// <summary>
/// 办理人意见
/// </summary>
public string Opinion
{
get;
set;
}
/// <summary>
/// 下步办理步骤名称
/// </summary>
public string NextOperateName
{
get;
set;
}
/// <summary>
/// 下步办理步骤
/// </summary>
public int? NextSortIndex
{
get;
set;
}
/// <summary>
/// 下步办理人ID
/// </summary>
public string NextUnitId
{
get;
set;
}
/// <summary>
/// 下步办理人ID
/// </summary>
public string NextOperaterManId
{
get;
set;
}
/// <summary>
/// 下步办理人姓名
/// </summary>
public string NextOperaterManName
{
get;
set;
}
}
}