123456789101112131415161718 |
- package http_model
- type GetEnterPriseIdsRequest struct {
- }
- type EnterPriseIds struct {
- EnterPriseIds []int64 `json:"enter_prise_ids"`
- }
- func NewGetEnterpriseIdsRequest() *GetEnterPriseIdsRequest {
- return new(GetEnterPriseIdsRequest)
- }
- func NewGetEnterpriseIdsResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(EnterPriseIds)
- return resp
- }
|