12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package req
- import (
- "time"
- "ulink-admin/pkg/base"
- )
- type DocFileQuery struct {
- base.GlobalQuery
- Id int64 `form:"id"`
- CatgoryId int64 `form:"catgoryId"`
- UserId int64 `form:"userId"`
- Label string `form:"label"`
- Keywords string `form:"keywords"`
- Info string `form:"info"`
- Content string `form:"content"`
- File string `form:"file"`
- State int `form:"state"`
- Sort int64 `form:"sort"`
- CreateTime time.Time `form:"createTime"`
- CreateBy string `form:"createBy"`
- UpdateTime time.Time `form:"updateTime"`
- UpdateBy string `form:"updateBy"`
- CompanyId int64 `form:"companyId"`
- }
- type DocFileBody struct {
- Id int64 `json:"id" binding:"required"`
- CatgoryId int64 `json:"catgoryId" `
- UserId int64 `json:"userId" `
- Label string `json:"label" binding:"required"`
- Keywords string `json:"keywords" `
- Info string `json:"info" `
- Content string `json:"content" binding:"required"`
- File string `json:"file" `
- State int `json:"state" `
- Sort int64 `json:"sort" `
- CreateTime time.Time `json:"createTime" `
- CreateBy string `json:"createBy" `
- UpdateTime time.Time `json:"updateTime" `
- UpdateBy string `json:"updateBy" `
- CompanyId int64 `json:"companyId" `
- }
|