12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using YiSha.Util.Model;
- namespace YiSha.Model.Param.SystemManage
- {
-
-
-
-
-
- public class AreaListParam
- {
-
-
-
- public string AreaName { get; set; }
- }
- public class BaseAreaParam : BaseApiToken
- {
-
-
-
- public string ProvinceId { get; set; } = "";
-
-
-
- public string CityId { get; set; } = "";
-
-
-
- public string CountyId { get; set; } = "";
-
-
-
- public string AreaId { get; set; }
- }
- }
|