|
@@ -165,6 +165,20 @@ type (
|
|
MobileHref string `json:"mobileHref"` //移动端跳转地址
|
|
MobileHref string `json:"mobileHref"` //移动端跳转地址
|
|
User []int64 `json:"user,optional"` //企业用户id
|
|
User []int64 `json:"user,optional"` //企业用户id
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ CanAddReq {
|
|
|
|
+ AppId string `header:"appId,default=10000"`
|
|
|
|
+ BaseUserId int64 `header:"newUserId"`
|
|
|
|
+ PositionId int64 `header:"positionId,optional"`
|
|
|
|
+ EntUserId int64 `header:"entUserId,optional"`
|
|
|
|
+ EntId int64 `header:"entId,optional"`
|
|
|
|
+ AccountId int64 `header:"accountId,optional"`
|
|
|
|
+ EntDeptId int64 `header:"entDeptId,optional"`
|
|
|
|
+ EmployInfoId int64 `json:"employInfoId"` //资讯收录id
|
|
|
|
+ EmployCustomId int64 `json:"employCustomId,optional"` //客户收录id
|
|
|
|
+ Key string `json:"key"` //创建线索:more_create_clue 创建机会:more_create_chance 创建客户:more_create_custom
|
|
|
|
+
|
|
|
|
+ }
|
|
)
|
|
)
|
|
|
|
|
|
service crmApplication {
|
|
service crmApplication {
|
|
@@ -201,4 +215,7 @@ service crmApplication {
|
|
@doc "消息推送"
|
|
@doc "消息推送"
|
|
@handler pushMsg
|
|
@handler pushMsg
|
|
post /crmApplication/info/push(PushMsgReq) returns (Reply)
|
|
post /crmApplication/info/push(PushMsgReq) returns (Reply)
|
|
|
|
+ @doc "是否可以创建"
|
|
|
|
+ @handler canAddReq
|
|
|
|
+ post /crmApplication/info/canAdd(CanAddReq) returns (Reply)
|
|
}
|
|
}
|