20 lines
419 B
Java
20 lines
419 B
Java
package com.klp.pocket.mapper;
|
|
|
|
import com.klp.pocket.domain.Klptcm1ShiftCurrent;
|
|
import com.klp.pocket.domain.vo.Klptcm1ShiftCurrentVo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 当前班组Mapper接口
|
|
*/
|
|
@Mapper
|
|
public interface Klptcm1ShiftCurrentMapper {
|
|
|
|
/**
|
|
* 查询当前班组信息(最新一条)
|
|
* @return 当前班组信息
|
|
*/
|
|
Klptcm1ShiftCurrentVo selectCurrent();
|
|
}
|
|
|