123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package dto
- import (
- "ERP_storage/dto/search"
- "fmt"
- "gorm.io/gorm"
- "strings"
- )
- var (
- Source string
- Driver string
- DBName string
- )
- type GeneralDelDto struct {
- Id int `uri:"id" json:"id" validate:"required"`
- Ids []int `json:"ids"`
- }
- func (g GeneralDelDto) GetIds() []int {
- ids := make([]int, 0)
- if g.Id != 0 {
- ids = append(ids, g.Id)
- }
- if len(g.Ids) > 0 {
- for _, id := range g.Ids {
- if id > 0 {
- ids = append(ids, id)
- }
- }
- } else {
- if g.Id > 0 {
- ids = append(ids, g.Id)
- }
- }
- if len(ids) <= 0 {
- //方式全部删除
- ids = append(ids, 0)
- }
- return ids
- }
- type GeneralGetDto struct {
- Id int `uri:"id" json:"id" validate:"required"`
- }
- func MakeCondition(q interface{}) func(db *gorm.DB) *gorm.DB {
- return func(db *gorm.DB) *gorm.DB {
- condition := &search.GormCondition{
- GormPublic: search.GormPublic{},
- Join: make([]*search.GormJoin, 0),
- }
- search.ResolveSearchQuery(Driver, q, condition)
- for _, join := range condition.Join {
- if join == nil {
- continue
- }
- db = db.Joins(join.JoinOn)
- for k, v := range join.Where {
- db = db.Where(k, v...)
- }
- for k, v := range join.Or {
- db = db.Or(k, v...)
- }
- for _, o := range join.Order {
- db = db.Order(o)
- }
- }
- for k, v := range condition.Where {
- db = db.Where(k, v...)
- }
- for k, v := range condition.Or {
- db = db.Or(k, v...)
- }
- var orContains string
- for k, v := range condition.OrContains {
- orContains += fmt.Sprintf(" OR %v '%v'", k, v[0])
- }
- if len(orContains) > 0 {
- db = db.Where(strings.TrimLeft(orContains, " OR"))
- }
- for _, o := range condition.Order {
- db = db.Order(o)
- }
- return db
- }
- }
- func Paginate(pageSize, pageIndex int) func(db *gorm.DB) *gorm.DB {
- return func(db *gorm.DB) *gorm.DB {
- if pageSize == 9999 {
- return db
- }
- offset := (pageIndex - 1) * pageSize
- if offset < 0 {
- offset = 0
- }
- return db.Offset(offset).Limit(pageSize)
- }
- }
- func WithNormalState() func(db *gorm.DB) *gorm.DB {
- return func(db *gorm.DB) *gorm.DB {
- return db.Where("t__state = 1")
- }
- }
|