mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
100 lines
2.4 KiB
Go
100 lines
2.4 KiB
Go
package dto
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/go-admin-team/go-admin-core/sdk/api"
|
|
|
|
"go-admin/app/admin/models"
|
|
"go-admin/common/dto"
|
|
common "go-admin/common/models"
|
|
)
|
|
|
|
type SysFileDirSearch struct {
|
|
dto.Pagination `search:"-"`
|
|
|
|
ID int `form:"Id" search:"type:exact;column:id;table:sys_file_dir" comment:"标识"`
|
|
Label string `form:"label" search:"type:exact;column:label;table:sys_file_dir" comment:"目录名称"`
|
|
PId string `form:"pId" search:"type:exact;column:p_id;table:sys_file_dir" comment:"上级目录"`
|
|
//Sort string `form:"sort" search:"type:exact;column:sort;table:sys_file_dir" comment:"排序"`
|
|
Path string `form:"path" search:"type:exact;column:path;table:sys_file_dir" comment:"路径"`
|
|
}
|
|
|
|
func (m *SysFileDirSearch) GetNeedSearch() interface{} {
|
|
return *m
|
|
}
|
|
|
|
func (m *SysFileDirSearch) Bind(ctx *gin.Context) error {
|
|
log := api.GetRequestLogger(ctx)
|
|
err := ctx.ShouldBind(m)
|
|
if err != nil {
|
|
log.Debugf("ShouldBind error: %s", err.Error())
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (m *SysFileDirSearch) Generate() dto.Index {
|
|
o := *m
|
|
return &o
|
|
}
|
|
|
|
type SysFileDirControl struct {
|
|
ID int `uri:"Id" comment:"标识"` // 标识
|
|
Label string `json:"label" comment:"目录名称"`
|
|
PId int `json:"pId" comment:"上级目录"`
|
|
Sort string `json:"sort" comment:"排序"`
|
|
Path string `json:"path" comment:"路径"`
|
|
CreateBy int `json:"-"`
|
|
UpdateBy int `json:"-"`
|
|
}
|
|
|
|
func (s *SysFileDirControl) Bind(ctx *gin.Context) error {
|
|
log := api.GetRequestLogger(ctx)
|
|
err := ctx.ShouldBindUri(s)
|
|
if err != nil {
|
|
log.Debugf("ShouldBindUri error: %s", err.Error())
|
|
return err
|
|
}
|
|
err = ctx.ShouldBind(s)
|
|
if err != nil {
|
|
log.Debugf("ShouldBind error: %s", err.Error())
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s *SysFileDirControl) Generate() dto.Control {
|
|
cp := *s
|
|
return &cp
|
|
}
|
|
|
|
func (s *SysFileDirControl) GenerateM() (common.ActiveRecord, error) {
|
|
return &models.SysFileDir{
|
|
Model: common.Model{Id: s.ID},
|
|
Label: s.Label,
|
|
PId: s.PId,
|
|
//Sort: s.Sort,
|
|
Path: s.Path,
|
|
ControlBy: common.ControlBy{
|
|
CreateBy: s.CreateBy,
|
|
UpdateBy: s.UpdateBy,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (s *SysFileDirControl) GetId() interface{} {
|
|
return s.ID
|
|
}
|
|
|
|
type SysFileDirById struct {
|
|
dto.ObjectById
|
|
UpdateBy int `json:"-"`
|
|
}
|
|
|
|
func (s *SysFileDirById) Generate() dto.Control {
|
|
cp := *s
|
|
return &cp
|
|
}
|
|
|
|
func (s *SysFileDirById) GenerateM() (common.ActiveRecord, error) {
|
|
return &models.SysFileDir{}, nil
|
|
}
|