17 lines
304 B
Java
17 lines
304 B
Java
|
|
package com.klp.pocket.service;
|
||
|
|
|
||
|
|
import com.klp.pocket.domain.vo.Klptcm1ShiftCurrentVo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 当前班组Service接口
|
||
|
|
*/
|
||
|
|
public interface IKlptcm1ShiftCurrentService {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询当前班组信息
|
||
|
|
* @return 当前班组信息
|
||
|
|
*/
|
||
|
|
Klptcm1ShiftCurrentVo getCurrentShift();
|
||
|
|
}
|
||
|
|
|