using System;
namespace Admin.NET.Application
{
///
/// 省份管理输出参数
///
public class BusProvinceOutput
{
///
/// 省份编号
///
public string Code { get; set; }
///
/// 省份名称
///
public string Name { get; set; }
///
/// Sort排序
///
public int Sort { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}