Skip to content
  • This project
    • Loading...
  • Sign in

张云鹏 / uc-engine

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • member-service
  • ..
  • service
  • TaskOperationService.java
  • xianghan@topdraw.cn's avatar
    初始化项目 · 3d32c2d8 ...
    3d32c2d8
    ;
    xianghan@topdraw.cn authored 2021-11-10 09:36:54 +0800
TaskOperationService.java 331 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.topdraw.business.process.service;

import com.topdraw.module.mq.DataSyncMsg;

/**
 * @description 权益操作接口
 * @author XiangHan
 * @date 2021.10.22
 */
public interface TaskOperationService {

    /**
     * 处理任务
     *
     * @param content 任务对象
     */
    void dealTask(String content);


}