src/main/java/org/jeecg/modules/base/service/IShiftService.java
@@ -3,6 +3,8 @@ import org.jeecg.modules.base.entity.Shift; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** * @Description: 班次 * @Author: jeecg-boot @@ -11,4 +13,5 @@ */ public interface IShiftService extends IService<Shift> { List<Shift> selectShiftListByFactoryId(String factoryId); }