SchoolCode.cs 314 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.Core.Dtos
  5. {
  6. public class SchoolCode
  7. {
  8. public string CountryId { get; set; }//国家
  9. public string ProvinceId { get; set; }//省份
  10. public string CityId { get; set; }//城市
  11. }
  12. }