소스 검색

update

master
shenjiachi 1 주 전
부모
커밋
3289072d36
2개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -2
      app/hdl/institutional_management/egg_energy/hdl_user_coin.go
  2. +2
    -2
      app/svc/public_platoon/svc_relation_ship_map.go

+ 4
- 2
app/hdl/institutional_management/egg_energy/hdl_user_coin.go 파일 보기

@@ -44,7 +44,8 @@ func GetActivePointsUserCoinList(c *gin.Context) {
CoinID: 2,
Name: "团队活跃账户币",
}
kindList = append(kindList, kind1, kind2)
kindList[0] = kind1
kindList[1] = kind2

// 默认查询第一种货币持有数量列表
if req.Kind == 0 {
@@ -201,7 +202,8 @@ func GetGreenEnergyUserCoinList(c *gin.Context) {
CoinID: 4,
Name: "团队绿色能量币",
}
kindList = append(kindList, kind1, kind2)
kindList[0] = kind1
kindList[1] = kind2

// 默认查询第一种货币持有数量列表
if req.Kind == 0 {


+ 2
- 2
app/svc/public_platoon/svc_relation_ship_map.go 파일 보기

@@ -114,11 +114,11 @@ func ExchangeUserPosition(engine *xorm.Engine, relation1, relation2 *model.Publi
return zhios_order_relate_logx.Error(err)
}

_, err = session.Where("id = ?", relation1.Id).Cols(forceColumns...).Update(session, &relation1)
_, err = session.ID(relation1.Id).Cols(forceColumns...).Update(relation1)
if err != nil {
return zhios_order_relate_logx.Error(err)
}
_, err = session.Where("id = ?", relation2.Id).Cols(forceColumns...).Update(session, &relation2)
_, err = session.ID(relation2.Id).Cols(forceColumns...).Update(relation2)
if err != nil {
return zhios_order_relate_logx.Error(err)
}


불러오는 중...
취소
저장