1234567891011121314151617181920212223242526272829 |
- package req
- import (
- "time"
- "ulink-admin/pkg/base"
- )
- type SysInfoQuery struct {
- base.GlobalQuery
- Id int64 `form:"id"` //主键id
- Label string `form:"label"` //系统名称
- Image string `form:"image"` //logo
- IsDel string `form:"isDel"` //删除标志(1代表存在 2代表删除)
- CreateBy string `form:"createBy"` //创建者
- CreateTime time.Time `form:"createTime"` //创建时间
- UpdateBy string `form:"updateBy"` //更新者
- UpdateTime time.Time `form:"updateTime"` //更新时间
- }
- type SysInfoBody struct {
- Id int64 `json:"id" ` //主键id
- Label string `json:"label" ` //系统名称
- Image string `json:"image"` //logo
- IsDel string `json:"isDel" ` //删除标志(1代表存在 2代表删除)
- CreateBy string `json:"createBy" ` //创建者
- CreateTime time.Time `json:"createTime" ` //创建时间
- UpdateBy string `json:"updateBy" ` //更新者
- UpdateTime time.Time `json:"updateTime" ` //更新时间
- }
|