SGGL_SHJ/SGGL/Model/APIItem/WeldingDailyItem.cs

42 lines
709 B
C#

namespace Model
{
public class WeldingDailyItem
{
/// <summary>
/// 日报ID
/// </summary>
public string WeldingDailyId
{
get;
set;
}
/// <summary>
/// 选择项ID集合
/// </summary>
public string SelectIds
{
get;
set;
}
/// <summary>
/// 未选择项ID集合
/// </summary>
public string NotSelectIds
{
get;
set;
}
/// <summary>
/// 项目ID
/// </summary>
public string ProjectId
{
get;
set;
}
}
}