file.go 465 B

123456789101112131415
  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. }
  10. type ReqUsers struct {
  11. UsersId []int `json:"users"` //转发的用户id
  12. }