package http_model type CheckLogisticRequest struct { SubAccountName string `json:"sub_account_name"` Password string `json:"password"` Job int `json:"job_id"` PhoneNumber string `json:"phone_number"` Code string `json:"code"` AccountID int64 `json:"account_id"` } type CheckLogisticRes struct { PhoneNumber string `json:"phone_number"` SubAccountName string `json:"sub_account_name"` JobID int `json:"job_id"` } func NewCheckLogisticRequest() *CheckLogisticRequest { return new(CheckLogisticRequest) } func NewCheckLogisticResponse() *CommonResponse { resp := new(CommonResponse) return resp }