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
691 B
C#
30 lines
691 B
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonSysBankGroupEntity
|
|
{
|
|
#region 私有成员
|
|
private List<JsonSysBankEntity> _json_SysBank_entities;//费用信息实体类
|
|
#endregion
|
|
|
|
public JsonSysBankGroupEntity()
|
|
{
|
|
}
|
|
|
|
#region 费用信息实体类
|
|
/// <summary>
|
|
/// 费用信息实体类
|
|
/// </summary>
|
|
public List<JsonSysBankEntity> JsonSysBankEntities
|
|
{
|
|
get { return _json_SysBank_entities; }
|
|
set { _json_SysBank_entities = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|