link_localaccept.go 656 B

1234567891011121314151617181920212223
  1. package http_model
  2. type LocalAcceptLinkRequest struct {
  3. TaskIds string `json:"task_id_list"` //任务id列表
  4. ProjectId string `json:"project_id"`
  5. OperatorId string `json:"operator_id"`
  6. OperateType int `json:"operate_type"`
  7. Isspecial int `json:"is_special"`
  8. EnterpriseId string `json:"enterprise_id"`
  9. }
  10. type LocalAcceptLinkData struct {
  11. TaskIds []string `json:"task_id_list"` //任务id列表
  12. }
  13. func NewLocalAcceptLinkRequest() *LocalAcceptLinkRequest {
  14. return new(LocalAcceptLinkRequest)
  15. }
  16. func NewLocalAcceptLinkResponse() *CommonResponse {
  17. resp := new(CommonResponse)
  18. resp.Data = new(LocalAcceptLinkData)
  19. return resp
  20. }