using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model
{
///
/// 省份
///
public class ProvinceModel
{
///
///省份Code
///
public string ProvinceCode { get; set; }
///
///省份名称
///
public string ProvinceName { get; set; }
}
///
/// 城市
///
public class CityModel
{
///
///省份Code
///
public string ProvinceCode { get; set; }
///
///城市名称
///
public string CityName { get; set; }
///
///城市Code
///
public string CityCode { get; set; }
}
///
/// 区县
///
public class DistrictModel
{
///
///城市Code
///
public string CityCode { get; set; }
///
///区县Code
///
public string DistrictCode { get; set; }
///
///区县名称
///
public string DistrictName { get; set; }
}
}