12345678910111213141516171819202122232425262728 |
- package model
- import (
- "time"
- )
- type ReqSysUserFile struct {
- ID int `gorm:"primarykey"`
- Depts []int `json:"depts" gorm:"comment:下发的部门"`
- EfectiveDate *time.Time `json:"effectiveDate" gorm:"comment:截止时间"`
- }
- 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"`
- }
|