You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/eastiot/api.Iot_api.get_all_sim_typ...

41 lines
1.4 KiB

package eastiot
import (
2 years ago
"context"
1 year ago
"github.com/dtapps/go-library/utils/gojson"
2 years ago
"github.com/dtapps/go-library/utils/gorequest"
"net/http"
)
type IotApiGetAllSimTypeResponse struct {
Code int64 `json:"code"`
Data []struct {
Type int64 `json:"type"` // 卡类型
Name string `json:"name"` // 类型名
MOrder int64 `json:"mOrder"` // 是否支持单次充值多个流量包0:不支持 1:支持
} `json:"data"`
Msg string `json:"msg"`
}
type IotApiGetAllSimTypeResult struct {
Result IotApiGetAllSimTypeResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newIotApiGetAllSimTypeResult(result IotApiGetAllSimTypeResponse, body []byte, http gorequest.Response, err error) *IotApiGetAllSimTypeResult {
return &IotApiGetAllSimTypeResult{Result: result, Body: body, Http: http, Err: err}
}
// IotApiGetAllSimType 卡类型列表查询
// https://www.showdoc.com.cn/916774523755909/4858492092033167
2 years ago
func (c *Client) IotApiGetAllSimType(ctx context.Context) *IotApiGetAllSimTypeResult {
// 请求
2 years ago
request, err := c.request(ctx, apiUrl+"/Api/IotApi/getAllSimType", map[string]interface{}{}, http.MethodPost)
// 定义
var response IotApiGetAllSimTypeResponse
1 year ago
err = gojson.Unmarshal(request.ResponseBody, &response)
return newIotApiGetAllSimTypeResult(response, request.ResponseBody, request, err)
}