CountryRegionsPO.cs 339 B

12345678910111213
  1. namespace JiaZhiQuan.Common.Models.PO
  2. {
  3. public class CountryRegionsPO
  4. {
  5. public int id { get; set; }
  6. public int parentId { get; set; }
  7. public int type { get; set; }
  8. public string name { get; set; }
  9. public string alias { get; set; }
  10. public float displayOrder { get; set; }
  11. }
  12. }