123456789101112131415161718192021222324252627282930 |
- package model
- import (
- "time"
- )
- type ReqSysUserFile struct {
- OriginalName string `json:"originalName"`
- AuthId string `json:"authId"`
- CategoryName string `json:"categoryName"`
- DeptsId []int `json:"deptsId"`
- EffectiveDate *time.Time `json:"effectiveDate"`
- }
- type ReqSysUsers struct {
- SysUsersId []int `json:"users"`
- }
- type SearchSysUserFiles struct {
- OriginalName string `json:"originalName"`
- SuffixName string `json:"suffixName"`
- Sort int `json:"sort"`
- PageNO int `json:"pageNO"`
- PageSize int `json:"pageSize"`
- }
- type RespFileInfo struct {
- AuthId string `json:"authId"`
- EffectiveDate time.Time `json:"effectiveDate" gorm:"effectiveDate"`
- }
|