- package model
- import "time"
- type ReqUserFile struct {
- OriginalName string `json:"originalName"` //文件原始名
- AuthId string `json:"authId"` //权限id
- CategoryName string `json:"categoryName"` //文件类别名
- DeptsId []int `json:"deptsId"` //下发的部门id
- EffectiveDate time.Time `json:"effectiveDate"` //阅读的有效日期
- }
|