|
|
@@ -24,9 +24,11 @@ func AgentBindMediumList(c *gin.Context) { //代理 查旗下 媒体 |
|
|
|
e.OutErr(c, err1.Code, err1.Error()) |
|
|
|
return |
|
|
|
} |
|
|
|
var tmp model2.Agent |
|
|
|
MasterDb(c).Where("id=?", req.Id).Get(&tmp) |
|
|
|
engine := db.Db |
|
|
|
agentWithMediumDb := implement.NewAgentWithMediumDb(engine) |
|
|
|
data, total, _ := agentWithMediumDb.FindAgentWithMediumList(req.Name, req.State, utils.StrToInt(req.Id), 0, utils.StrToInt(req.Page), utils.StrToInt(req.Limit)) |
|
|
|
data, total, _ := agentWithMediumDb.FindAgentWithMediumList(req.Name, req.State, tmp.AgentId, 0, utils.StrToInt(req.Page), utils.StrToInt(req.Limit)) |
|
|
|
|
|
|
|
list := make([]md.MediumListData, 0) |
|
|
|
NewMediumDb := implement2.NewMediumDb(MasterDb(c)) |
|
|
@@ -72,9 +74,11 @@ func MediumBindAgentList(c *gin.Context) { |
|
|
|
e.OutErr(c, err1.Code, err1.Error()) |
|
|
|
return |
|
|
|
} |
|
|
|
var tmp model2.Medium |
|
|
|
MasterDb(c).Where("id=?", req.Id).Get(&tmp) |
|
|
|
engine := db.Db |
|
|
|
agentWithMediumDb := implement.NewAgentWithMediumDb(engine) |
|
|
|
data, total, _ := agentWithMediumDb.FindAgentWithMediumList(req.Name, req.State, 0, utils.StrToInt(req.Id), utils.StrToInt(req.Page), utils.StrToInt(req.Limit)) |
|
|
|
data, total, _ := agentWithMediumDb.FindAgentWithMediumList(req.Name, req.State, 0, tmp.MediumId, utils.StrToInt(req.Page), utils.StrToInt(req.Limit)) |
|
|
|
|
|
|
|
list := make([]md.MediumListData, 0) |
|
|
|
NewAgentDb := implement2.NewAgentDb(MasterDb(c)) |
|
|
|