LaJiFenLei/Waste.Application/System/Dtos/SystemDto.cs

18 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Waste.Domain;
namespace Waste.Application
{
/// <summary>
/// 地址列表
/// </summary>
public class CityListModel : W_AreaInfo
{
public List<W_AreaInfo> children { get; set; }
}
}