loginDto.cs 446 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace wispro.sp.share.webViewObject
  8. {
  9. public class loginDto
  10. {
  11. [Required(ErrorMessage = "请填写登录账号")]
  12. public string Name { get; set; }
  13. [Required(ErrorMessage = "请填写密码")]
  14. public string Password { get; set; }
  15. }
  16. }