src/main/java/org/jeecg/modules/base/service/impl/ShiftServiceImpl.java
@@ -7,6 +7,9 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import java.util.Collections; import java.util.List; /** * @Description: 班次 * @Author: jeecg-boot @@ -16,4 +19,8 @@ @Service public class ShiftServiceImpl extends ServiceImpl<ShiftMapper, Shift> implements IShiftService { @Override public List<Shift> selectShiftListByFactoryId(String factoryId) { return this.baseMapper.selectShiftListByFactoryId(factoryId); } }