| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace ConfigurationApi.Models.Dto
- {
- public class ProvincesAddressListDto
- {
- public string id { get; set; }
- public string code { get; set; }
- public string name { get; set; }
- public string parentcode { get; set; }
- public List<ProvincesAddressListDto> entityJson { get; set; }
- public List<ProvincesAddressListDto> children { get; set; }//2019-7-3 前端需要换这个名字使用
- }
- }
|