You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
559 B

3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace Shentun.Peis.BirthPlaces
  6. {
  7. public class UpdateBirthPlaceDto
  8. {
  9. /// <summary>
  10. /// 名称
  11. /// </summary>
  12. [Required(ErrorMessage = "名称不能为空")]
  13. public string DisplayName { get; set; }
  14. /// <summary>
  15. /// 国家标准码
  16. /// </summary>
  17. [Required(ErrorMessage = "国家标准码不能为空")]
  18. public string CountryCode { get; set; }
  19. }
  20. }