file.go 884 B

12345678910111213141516171819202122232425262728
  1. package model
  2. import (
  3. "time"
  4. )
  5. type ReqSysUserFile struct {
  6. ID int `gorm:"primarykey"` // 主键ID
  7. Depts []int `json:"depts" gorm:"comment:下发的部门"`
  8. EfectiveDate *time.Time `json:"effectiveDate" gorm:"comment:截止时间"`
  9. }
  10. type ReqSysUsers struct {
  11. SysUsersId []int `json:"users"` //转发的用户id
  12. }
  13. type SearchSysUserFiles struct {
  14. OriginalName string `json:"originalName"` //文件原始名
  15. SuffixName string `json:"suffixName"` //文件后缀名
  16. Sort int `json:"sort"` //排序方式
  17. PageNO int `json:"pageNO"` //当前页
  18. PageSize int `json:"pageSize"` //每页大小
  19. }
  20. type RespFileInfo struct {
  21. AuthId string `json:"authId"` //权限id
  22. EffectiveDate time.Time `json:"effectiveDate" gorm:"effectiveDate"` //阅读的有效日期
  23. }