You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
661 B
C#
30 lines
661 B
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonWmsInGroupEntity3
|
|
{
|
|
#region 私有成员
|
|
private List<JsonWmsInEntity3> _json_WmsIn_entities;//信息实体类
|
|
#endregion
|
|
|
|
public JsonWmsInGroupEntity3()
|
|
{
|
|
}
|
|
|
|
#region 信息实体类
|
|
/// <summary>
|
|
/// 信息实体类
|
|
/// </summary>
|
|
public List<JsonWmsInEntity3> JsonWmsInEntities
|
|
{
|
|
get { return _json_WmsIn_entities; }
|
|
set { _json_WmsIn_entities = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|