file.go 389 B

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