新火炬后端单体项目初始化代码
zhangherong
3 天以前 afb71a0770acc36a6e062aecf2dfc1c92d2d80a7
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);
}