1234567891011121314151617181920212223242526 |
- package dto
- import "git.rtzhtech.cn/iss/public-lib/model"
- type GetUserRequest struct {
- UserName string `json:"userName"`
- FullName string `json:"fullName"`
- Comment string `json:"comment"`
- Role int `json:"role"`
- Status int `json:"status"`
- LimitPage
- }
- type GetUserResponse struct {
- List []*model.SysUsr `json:"list"`
- Total int64 `json:"total"`
- }
- type GetUserAccessRequest struct {
- UserId int `json:"userId"`
- }
- type DelUserAccessRequest struct {
- AccessId int `json:"accessId"`
- UserId int `json:"userId"`
- }
|