123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- package dto
- import (
- "go-admin/app/{{.PackageName}}/models"
- "go-admin/common/dto"
- common "go-admin/common/models"
- {{- $bb := false -}}
- {{- range .Columns -}}
- {{$z := .IsQuery}}
- {{- if ($z) }}
- {{if eq .GoType "time.Time"}}{{- $bb = true -}}{{- end -}}
- {{- end -}}
- {{- end -}}
- {{- range .Columns -}}
- {{if eq .GoType "time.Time"}}{{- $bb = true -}}{{- end -}}
- {{- end -}}
- {{- if eq $bb true -}}
- "time"
- {{- end }}
- )
- type {{.ClassName}}GetPageReq struct {
- dto.Pagination `search:"-"`
- {{- $tablename := .TBName -}}
- {{- range .Columns -}}
- {{$z := .IsQuery}}
- {{- if ($z) }}
- {{.GoField}} {{.GoType}} `form:"{{.JsonField}}" search:"type:{{if eq .QueryType "EQ"}}exact{{ else if eq .QueryType "NE"}}iexact{{ else if eq .QueryType "LIKE"}}contains{{ else if eq .QueryType "GT"}}gt{{ else if eq .QueryType "GTE"}}gte{{ else if eq .QueryType "LT"}}lt{{ else if eq .QueryType "LTE"}}lte{{- end }};column:{{.ColumnName}};table:{{$tablename}}" comment:"{{.ColumnComment}}"`
- {{- end }}
- {{- end }}
- {{.ClassName}}Order
- }
- type {{.ClassName}}Order struct {
- {{- $tablename := .TBName -}}
- {{- range .Columns -}}
- {{.GoField}} {{.GoType}} `form:"{{.JsonField}}Order" search:"type:order;column:{{.ColumnName}};table:{{$tablename}}"`
- {{ end }}
- }
- func (m *{{.ClassName}}GetPageReq) GetNeedSearch() interface{} {
- return *m
- }
- type {{.ClassName}}InsertReq struct {
- {{- range .Columns -}}
- {{$x := .Pk}}
- {{- if ($x) }}
- {{.GoField}} {{.GoType}} `json:"-" comment:"{{.ColumnComment}}"` // {{.ColumnComment}}
- {{- else if eq .GoField "CreatedAt" -}}
- {{- else if eq .GoField "UpdatedAt" -}}
- {{- else if eq .GoField "DeletedAt" -}}
- {{- else if eq .GoField "CreateBy" -}}
- {{- else if eq .GoField "UpdateBy" -}}
- {{- else }}
- {{.GoField}} {{.GoType}} `json:"{{.JsonField}}" comment:"{{.ColumnComment}}"`
- {{- end -}}
- {{- end }}
- common.ControlBy
- }
- func (s *{{.ClassName}}InsertReq) Generate(model *models.{{.ClassName}}) {
- {{- range .Columns -}}
- {{$x := .Pk}}
- {{- if ($x) }}
- if s.{{.GoField}} == 0 {
- model.Model = common.Model{ {{.GoField}}: s.{{.GoField}} }
- }
- {{- else if eq .GoField "CreatedAt" -}}
- {{- else if eq .GoField "UpdatedAt" -}}
- {{- else if eq .GoField "DeletedAt" -}}
- {{- else if eq .GoField "CreateBy" -}}
- {{- else if eq .GoField "UpdateBy" -}}
- {{- else }}
- model.{{.GoField}} = s.{{.GoField}}
- {{- end -}}
- {{- end }}
- }
- func (s *{{.ClassName}}InsertReq) GetId() interface{} {
- return s.{{.PkGoField}}
- }
- type {{.ClassName}}UpdateReq struct {
- {{- range .Columns -}}
- {{$x := .Pk}}
- {{- if ($x) }}
- {{.GoField}} {{.GoType}} `uri:"{{.JsonField}}" comment:"{{.ColumnComment}}"` // {{.ColumnComment}}
- {{- else if eq .GoField "CreatedAt" -}}
- {{- else if eq .GoField "UpdatedAt" -}}
- {{- else if eq .GoField "DeletedAt" -}}
- {{- else if eq .GoField "CreateBy" -}}
- {{- else if eq .GoField "UpdateBy" -}}
- {{- else }}
- {{.GoField}} {{.GoType}} `json:"{{.JsonField}}" comment:"{{.ColumnComment}}"`
- {{- end -}}
- {{- end }}
- common.ControlBy
- }
- func (s *{{.ClassName}}UpdateReq) Generate(model *models.{{.ClassName}}) {
- {{- range .Columns -}}
- {{$x := .Pk}}
- {{- if ($x) }}
- if s.{{.GoField}} == 0 {
- model.Model = common.Model{ {{.GoField}}: s.{{.GoField}} }
- }
- {{- else if eq .GoField "CreatedAt" -}}
- {{- else if eq .GoField "UpdatedAt" -}}
- {{- else if eq .GoField "DeletedAt" -}}
- {{- else if eq .GoField "CreateBy" -}}
- {{- else if eq .GoField "UpdateBy" -}}
- {{- else }}
- model.{{.GoField}} = s.{{.GoField}}
- {{- end -}}
- {{- end }}
- }
- func (s *{{.ClassName}}UpdateReq) GetId() interface{} {
- return s.{{.PkGoField}}
- }
- // {{.ClassName}}GetReq 功能获取请求参数
- type {{.ClassName}}GetReq struct {
- {{- range .Columns -}}
- {{$x := .Pk}}
- {{- if ($x) }}
- {{.GoField}} {{.GoType}} `uri:"{{.JsonField}}"`
- {{- end }}
- {{- end }}
- }
- func (s *{{.ClassName}}GetReq) GetId() interface{} {
- return s.{{.PkGoField}}
- }
- // {{.ClassName}}DeleteReq 功能删除请求参数
- type {{.ClassName}}DeleteReq struct {
- Ids []int `json:"ids"`
- }
- func (s *{{.ClassName}}DeleteReq) GetId() interface{} {
- return s.Ids
- }
|