- package model
- import "time"
- type ReqUserFile struct {
- OriginalName string `json:"originalName"`
- AuthId string `json:"authId"`
- CategoryName string `json:"categoryName"`
- DeptsId []int `json:"deptsId"`
- EffectiveDate time.Time `json:"effectiveDate"`
- }
- type ReqUsers struct {
- UsersId []int `json:"users"`
- }
|