package com.qianwen.smartman.modules.smis.service; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; import com.qianwen.smartman.modules.smis.dto.ShiftRestTimeDTO; import com.qianwen.smartman.modules.smis.entity.ShiftRestTime; public interface IShiftRestTimeService extends IService { void saveRestTime(List shiftRestTimeDTOList, Long modelId, Long shiftId); }