16 lines
276 B
Java
16 lines
276 B
Java
package com.cnbm.basic.mapper;
|
|
|
|
import com.cnbm.common.dao.BaseDao;
|
|
import com.cnbm.basic.entity.Shift;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 班次 表
|
|
*
|
|
* @author why
|
|
* @since 2022-07-13
|
|
*/
|
|
@Mapper
|
|
public interface ShiftMapper extends BaseDao<Shift> {
|
|
|
|
} |