Compare commits

..

No commits in common. "e5255d3022f992d074f75629677363114dbed51c" and "46839556cdfe014b2c60d6e9fb6093571350ac33" have entirely different histories.

View File

@ -101,8 +101,7 @@ func GetBundleBalanceList(req *bundle.GetBundleBalanceListReq) (data []model.Bun
u.tel_num as user_phone_number
`).
Joins("LEFT JOIN bundle_order_records bor on bor.customer_id = bb .user_id").
Joins("LEFT JOIN `micro-account`.`user` u on u.id = bb.user_id").
Where("bor.deleted_at IS NOT NULL")
Joins("LEFT JOIN `micro-account`.`user` u on u.id = bb.user_id")
if req.UserName != "" {
session = session.Where("u.nickname like ?", "%"+req.UserName+"%")
}