You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
Java
13 lines
368 B
Java
2 years ago
|
package com.engine.tjbankSocket.impl;
|
||
|
|
||
|
import com.engine.tjbankSocket.SocketExecute;
|
||
|
import com.engine.web.tjbk.TJBKWorkFlow;
|
||
|
|
||
|
public class GetToCountSocketExecute implements SocketExecute {
|
||
|
TJBKWorkFlow tjbkWorkFlow = new TJBKWorkFlow();
|
||
|
@Override
|
||
|
public String execute(String param) {
|
||
|
return tjbkWorkFlow.getToDoCount(param.toString());
|
||
|
}
|
||
|
}
|