package org.jeecg.modules.mdc.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.mdc.entity.MdcEquipmentPunch; import java.util.List; /** * @Description: mdc_equipment_punch * @Author: jeecg-boot * @Date: 2025-06-09 * @Version: V1.0 */ public interface IMdcEquipmentPunchService extends IService { List queryList(); void workUp(MdcEquipmentPunch mdcEquipmentPunch); void workDown(MdcEquipmentPunch mdcEquipmentPunch); }