GetEnterPriseIdsRequest.go 370 B

123456789101112131415161718
  1. package http_model
  2. type GetEnterPriseIdsRequest struct {
  3. }
  4. type EnterPriseIds struct {
  5. EnterPriseIds []int64 `json:"enter_prise_ids"`
  6. }
  7. func NewGetEnterpriseIdsRequest() *GetEnterPriseIdsRequest {
  8. return new(GetEnterPriseIdsRequest)
  9. }
  10. func NewGetEnterpriseIdsResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(EnterPriseIds)
  13. return resp
  14. }