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
658 B
C#
30 lines
658 B
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonOpSeaiTruckGroupEntity
|
|
{
|
|
#region 私有成员
|
|
private List<JsonOpSeaiTruckEntity> _json_OpSeaiTruck_entities;
|
|
#endregion
|
|
|
|
public JsonOpSeaiTruckGroupEntity()
|
|
{
|
|
}
|
|
|
|
#region
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<JsonOpSeaiTruckEntity> JsonOpSeaiTruckEntities
|
|
{
|
|
get { return _json_OpSeaiTruck_entities; }
|
|
set { _json_OpSeaiTruck_entities = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|