123456789101112131415161718192021 |
- package http_model
- type PassSecTaskCoopRequest struct {
- SelectionId string `json:"selection_id"`
- TaskIds []string `json:"task_ids"`
- EnterpriseId string `json:"enterprise_id"`
- SubAccountId int `json:"sub_account_id"`
- }
- type PassSecTaskCoopData struct {
- }
- func NewPassSecTaskCoopRequest() *PassSecTaskCoopRequest {
- return new(PassSecTaskCoopRequest)
- }
- func NewPassSecTaskCoopResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(PassSecTaskCoopData)
- return resp
- }
|