|
@@ -36,6 +36,9 @@ type BaseFromBusinessIndexResp struct {
|
|
|
// @return err error
|
|
|
func PushEdb(paramStr string) (resp *PushEdbResponse, err error) {
|
|
|
_, resultByte, err := postEdbLib(paramStr, "/business_index/handle")
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
err = json.Unmarshal(resultByte, &resp)
|
|
|
if err != nil {
|
|
|
return
|
|
@@ -67,6 +70,9 @@ type DelBusinessIndexResp struct {
|
|
|
// @return err error
|
|
|
func DelBusinessIndex(paramStr string) (resp *DelBusinessIndexResponse, err error) {
|
|
|
_, resultByte, err := postEdbLib(paramStr, "/business_index/index/del")
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
err = json.Unmarshal(resultByte, &resp)
|
|
|
if err != nil {
|
|
|
return
|
|
@@ -83,6 +89,9 @@ func DelBusinessIndex(paramStr string) (resp *DelBusinessIndexResponse, err erro
|
|
|
// @return err error
|
|
|
func DelBusinessIndexData(paramStr string) (resp *models.BaseResponse, err error) {
|
|
|
_, resultByte, err := postEdbLib(paramStr, "/business_index/data/del")
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
err = json.Unmarshal(resultByte, &resp)
|
|
|
if err != nil {
|
|
|
return
|