ソースを参照

update

master
shenjiachi 8時間前
コミット
5e80e4d0fd
2個のファイルの変更30行の追加1行の削除
  1. +6
    -1
      src/dao/fin_withdraw_apply_dao.go
  2. +24
    -0
      src/implement/fin_withdraw_apply_implement.go

+ 6
- 1
src/dao/fin_withdraw_apply_dao.go ファイルの表示

@@ -1,6 +1,11 @@
package dao

import (
"code.fnuoos.com/EggPlanet/egg_models.git/src/model"
"xorm.io/xorm"
)

type FinWithdrawApplyDao interface {
//TODO:: You can add specific method definitions here

FinWithdrawApplyGetBySession(session *xorm.Session, startAt, endAt string, params map[string]interface{}) (*[]model.FinWithdrawSetting, error)
}

+ 24
- 0
src/implement/fin_withdraw_apply_implement.go ファイルの表示

@@ -2,6 +2,11 @@

import (
"code.fnuoos.com/EggPlanet/egg_models.git/src/dao"
"code.fnuoos.com/EggPlanet/egg_models.git/src/model"
zhios_order_relate_utils "code.fnuoos.com/EggPlanet/egg_models.git/utils"
zhios_order_relate_logx "code.fnuoos.com/EggPlanet/egg_models.git/utils/logx"
"fmt"
"reflect"
"xorm.io/xorm"
)

@@ -12,3 +17,22 @@ func NewFinWithdrawApplyDb(engine *xorm.Engine) dao.FinWithdrawApplyDao {
type FinWithdrawApplyDb struct {
Db *xorm.Engine
}

func (f FinWithdrawApplyDb) FinWithdrawApplyGetBySession(session *xorm.Session, startAt, endAt string, params map[string]interface{}) (*[]model.FinWithdrawSetting, error) {
var m *[]model.FinWithdrawSetting
session = session.Where("create_at > >", startAt).And("create_at < ?", endAt)
if reflect.TypeOf(params["value"]).Kind() == reflect.Slice {
//指定In查询
if err := session.In(zhios_order_relate_utils.AnyToString(params["key"]), params["value"]).Find(m); err != nil {
return nil, zhios_order_relate_logx.Warn(err)
}
} else {
var query = fmt.Sprintf("%s =?", params["key"])
err := session.And(query, params["value"]).Find(m)
if err != nil {
return nil, zhios_order_relate_logx.Error(err)
}
}

return m, nil
}

読み込み中…
キャンセル
保存