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
224 B
Java
13 lines
224 B
Java
2 years ago
|
package com.engine.sskj.service;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
public interface KqWorkflowService {
|
||
|
/**
|
||
|
* 连班加班流程加班时长计算
|
||
|
*/
|
||
|
Map<String, Object> calWorkTime(Map<String, Object> params);
|
||
|
|
||
|
|
||
|
}
|