12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos
- {
-
-
-
- public class DtoBase
- {
-
-
-
-
- public int PortType { get; set; } = 1;
- public int PageIndex { get; set; } = 1;
- public int PageSize { get; set; } = 10;
- }
- public class JsonDtoBase
- {
- public string Paras { get; set; }
- }
-
-
-
- public class DelBaseDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int DeleteUserId { get; set; }
- }
- }
|