eight
2024-08-31 792e4d2e1cb8eb44ed9d4958858485c99dd0ba57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lihu.jh.module.ecg.service.queue;
 
import cn.lihu.jh.framework.common.exception.ErrorCode;
 
import java.util.concurrent.Callable;
 
public class BedReloadCallable implements Callable<ErrorCode> {
 
    QueueService queueService;
 
    public BedReloadCallable(QueueService queueService)
    {
        super();
        this.queueService = queueService;
    }
 
    public ErrorCode call() throws Exception {
        return queueService.bedReload();
    }
 
}