WH01243 1 vuosi sitten
vanhempi
commit
50e720b9aa

+ 1 - 0
api/application.api

@@ -310,6 +310,7 @@ type (
 		Intermediary string `json:"intermediary,optional"` //中间人
 		Agency       string `json:"agency,optional"`       //代理机构
 		PositionId   int64  `header:"positionId,optional"`
+		EntAccountId int64  `header:"entAccountId,optional"` //企业账户id
 	}
 	RouteOwnerListReq {
 		BuyerId    string `json:"buyerId,optional"`

+ 1 - 0
api/internal/logic/candidatechannellistlogic.go

@@ -34,6 +34,7 @@ func (l *CandidateChannelListLogic) CandidateChannelList(req *types.ChannelListR
 		Heterotophy:  req.Heterotophy,
 		Agency:       req.Agency,
 		PositionId:   req.PositionId,
+		EntAccountId: req.EntAccountId,
 	}
 	data := ownerService.CandidateChannel()
 	resp.Data = data

+ 1 - 0
api/internal/types/types.go

@@ -336,6 +336,7 @@ type ChannelListReq struct {
 	Intermediary string `json:"intermediary,optional"` //中间人
 	Agency       string `json:"agency,optional"`       //代理机构
 	PositionId   int64  `header:"positionId,optional"`
+	EntAccountId int64  `header:"entAccountId,optional"` //企业账户id
 }
 
 type RouteOwnerListReq struct {