|
|
@@ -3,6 +3,7 @@ package implement |
|
|
|
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" |
|
|
|
"xorm.io/xorm" |
|
|
|
) |
|
|
@@ -60,3 +61,25 @@ func (u UserRealNameAuthDb) GetRealNameAuth(uid int) (*model.UserRealNameAuth, e |
|
|
|
} |
|
|
|
return &m, nil |
|
|
|
} |
|
|
|
func (u UserRealNameAuthDb) FindRealNameAndTotal(page, limit, uid, name, idNo, state string) (*[]model.UserRealNameAuth, int64, error) { |
|
|
|
var m []model.UserRealNameAuth |
|
|
|
sess := u.Db.Where("1=1") |
|
|
|
if uid != "" { |
|
|
|
sess.And("uid=?", uid) |
|
|
|
} |
|
|
|
if name != "" { |
|
|
|
sess.And("real_name=?", name) |
|
|
|
} |
|
|
|
if idNo != "" { |
|
|
|
sess.And("card_no=?", idNo) |
|
|
|
} |
|
|
|
if state != "" { |
|
|
|
sess.And("state=?", state) |
|
|
|
} |
|
|
|
start := (zhios_order_relate_utils.StrToInt(page) - 1) * zhios_order_relate_utils.StrToInt(limit) |
|
|
|
count, err := sess.Limit(zhios_order_relate_utils.StrToInt(limit), start).OrderBy("id desc").FindAndCount(&m) |
|
|
|
if err != nil { |
|
|
|
return nil, count, zhios_order_relate_logx.Error(err) |
|
|
|
} |
|
|
|
return &m, count, nil |
|
|
|
} |