|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class SysRegionQuery
|
|
{
|
|
/// <summary>
|
|
/// 传0位获取省 传其他Code为获取下级数据
|
|
/// </summary>
|
|
public string Code { get; set; } = "0";
|
|
|
|
public string provinceName { get; set; }
|
|
}
|
|
}
|