SGGL_SHJ/SGGL/Model/APIItem/WeldingDailyItem.cs

42 lines
709 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
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;
}
}
}