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.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
public class JsonCodeCurrencySetGroupEntity
|
|
|
|
|
{
|
|
|
|
|
#region 私有成员
|
|
|
|
|
private List<JsonCodeCurrencySetEntity> _json_CodeCurrencySet_entities;//集装箱信息实体类
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public JsonCodeCurrencySetGroupEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 集装箱信息实体类
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 集装箱信息实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<JsonCodeCurrencySetEntity> JsonCodeCurrencySetEntities
|
|
|
|
|
{
|
|
|
|
|
get { return _json_CodeCurrencySet_entities; }
|
|
|
|
|
set { _json_CodeCurrencySet_entities = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|