sys_info_request.go 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package req
  2. import (
  3. "time"
  4. "ulink-admin/pkg/base"
  5. )
  6. type SysInfoQuery struct {
  7. base.GlobalQuery
  8. Id int64 `form:"id"` //主键id
  9. Label string `form:"label"` //系统名称
  10. Image string `form:"image"` //logo
  11. IsDel string `form:"isDel"` //删除标志(1代表存在 2代表删除)
  12. CreateBy string `form:"createBy"` //创建者
  13. CreateTime time.Time `form:"createTime"` //创建时间
  14. UpdateBy string `form:"updateBy"` //更新者
  15. UpdateTime time.Time `form:"updateTime"` //更新时间
  16. }
  17. type SysInfoBody struct {
  18. Id int64 `json:"id" ` //主键id
  19. Label string `json:"label" ` //系统名称
  20. Image string `json:"image"` //logo
  21. IsDel string `json:"isDel" ` //删除标志(1代表存在 2代表删除)
  22. CreateBy string `json:"createBy" ` //创建者
  23. CreateTime time.Time `json:"createTime" ` //创建时间
  24. UpdateBy string `json:"updateBy" ` //更新者
  25. UpdateTime time.Time `json:"updateTime" ` //更新时间
  26. }