123456789101112131415161718192021222324252627282930313233343536373839 |
- package req
- import (
- "time"
- "ulink-admin/pkg/base"
- )
- type SysAttachmentQuery struct {
- base.GlobalQuery
- Id int64 `form:"id"` //主键
- Label string `form:"label"` //文件名称
- Path string `form:"path"` //文件路径
- ZipPath string `form:"zipPath"` //文件压缩路径
- Url string `form:"url"` //相对路径
- Type string `form:"type"` //文件类型
- Ext string `form:"ext"` //扩展名
- CreateTime time.Time `form:"createTime"` //创建时间
- CreateBy string `form:"createBy"` //创建人
- UpdateTime time.Time `form:"updateTime"` //更新时间
- UpdateBy string `form:"updateBy"` //更新人
- Remark string `form:"remark"` //备注
- No int64 `form:"no"` //序号
- }
- type SysAttachmentBody struct {
- Id int64 `json:"id"` //主键
- Label string `json:"label"` //文件名称
- Path string `json:"path"` //文件路径
- ZipPath string `form:"zipPath"` //文件压缩路径
- Url string `json:"url"` //相对路径
- Type string `json:"type"` //文件类型
- Ext string `json:"ext"` //扩展名
- CreateTime time.Time `json:"createTime"` //创建时间
- CreateBy string `json:"createBy"` //创建人
- UpdateTime time.Time `json:"updateTime"` //更新时间
- UpdateBy string `json:"updateBy"` //更新人
- Remark string `json:"remark"` //备注
- No int64 `json:"no"` //序号
- }
|