|
@@ -205,7 +205,12 @@ type (
|
|
PositionId int64 `header:"positionId,optional"`
|
|
PositionId int64 `header:"positionId,optional"`
|
|
EntId string `header:"entId,optional"`
|
|
EntId string `header:"entId,optional"`
|
|
EntUserId string `header:"entUserId,optional"`
|
|
EntUserId string `header:"entUserId,optional"`
|
|
- DeptId string `header:"deptId,optional"` //部门id
|
|
|
|
|
|
+ DeptId string `header:"deptId,optional"` //部门id
|
|
|
|
+ PartyA string `json:"partyA,optional"` //甲方
|
|
|
|
+ Supplier string `json:"supplier,optional"` //供应商
|
|
|
|
+ Heterotophy string `json:"heterotophy,optional"` //同甲异业
|
|
|
|
+ Intermediary string `json:"intermediary,optional"` //中间人
|
|
|
|
+ Agency string `json:"agency,optional"` //代理机构
|
|
PageNum int64 `json:"pageNum"`
|
|
PageNum int64 `json:"pageNum"`
|
|
PageSize int64 `json:"pageSize"`
|
|
PageSize int64 `json:"pageSize"`
|
|
BusinessType string `json:"businessType"`
|
|
BusinessType string `json:"businessType"`
|
|
@@ -276,6 +281,15 @@ type (
|
|
Monitorcount_start int64 `json:"monitorcount_start,optional"`
|
|
Monitorcount_start int64 `json:"monitorcount_start,optional"`
|
|
Monitorcount_end int64 `json:"monitorcount_end,optional"`
|
|
Monitorcount_end int64 `json:"monitorcount_end,optional"`
|
|
}
|
|
}
|
|
|
|
+ IgnoreReq {
|
|
|
|
+ PositionId int64 `header:"positionId"`
|
|
|
|
+ EntUserId int64 `header:"entUserId,optional"`
|
|
|
|
+ EntId int64 `header:"entId,optional"`
|
|
|
|
+ EntDeptId int64 `header:"entDeptId,optional"`
|
|
|
|
+ RelateId string `json:"relateId,optional"`
|
|
|
|
+ Source int `json:"source,optional"`
|
|
|
|
+ Action int `json:"action,optional"`
|
|
|
|
+ }
|
|
)
|
|
)
|
|
|
|
|
|
@server (
|
|
@server (
|
|
@@ -362,4 +376,8 @@ service crmApplication {
|
|
@doc "人脉库-列表"
|
|
@doc "人脉库-列表"
|
|
@handler networkList
|
|
@handler networkList
|
|
post /crmApplication/network/networkList (NetWorkListReq) returns (Reply)
|
|
post /crmApplication/network/networkList (NetWorkListReq) returns (Reply)
|
|
|
|
+
|
|
|
|
+ @doc "忽略操作"
|
|
|
|
+ @handler ignoreAction
|
|
|
|
+ post /crmApplication/ignore/action (IgnoreReq) returns (Reply)
|
|
}
|
|
}
|