123456789101112131415161718192021222324252627282930313233343536373839 |
- package req
- import (
- "time"
- "ulink-admin/pkg/base"
- )
- type DocArticleQuery struct {
- base.GlobalQuery
- Id int64 `form:"id"`
- Label string `form:"label"`
- CatId int64 `form:"catId"`
- Profile string `form:"profile"`
- Url string `form:"url"`
- IsTop int `form:"isTop"`
- IsHot int `form:"isHot"`
- Content string `form:"content"`
- Sort int `form:"sort"`
- CreateBy string `form:"createBy"`
- CreateTime time.Time `form:"createTime"`
- UpdateBy string `form:"updateBy"`
- UpdateTime time.Time `form:"updateTime"`
- }
- type DocArticleBody struct {
- Id int64 `json:"id"`
- Label string `json:"label"`
- CatId int64 `json:"catId"`
- Profile string `json:"profile"`
- Url string `json:"url"`
- IsTop int `json:"isTop"`
- IsHot int `json:"isHot"`
- Content string `json:"content"`
- Sort int `json:"sort"`
- CreateBy string `json:"createBy"`
- CreateTime time.Time `json:"createTime"`
- UpdateBy string `json:"updateBy"`
- UpdateTime time.Time `json:"updateTime"`
- }
|