12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using Model.Base;
- namespace Dto
- {
-
-
-
- public class ApiInfoAddDto
- {
-
-
-
- public int groupId { get; set; }
-
-
-
- [Required(ErrorMessage = "接口名称不能为空")]
- public string? apiName { get; set; }
-
-
-
- [Required(ErrorMessage = "接口关键字不能为空")]
- public string? apiKey { get; set; }
-
-
-
- [Required(ErrorMessage = "接口主机头不能为空")]
- public string? apiHost { get; set; }
-
-
-
- [Required(ErrorMessage = "接口端口号不能为空")]
- public int apiPort { get; set; }
-
-
-
- [Required(ErrorMessage = "接口路由不能为空")]
- public string? apiRouter { get; set; }
-
-
-
- public string? apiMethod { get; set; }
- }
- }
|