对比新文件 |
| | |
| | | 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<MdcEquipmentPunch> { |
| | | |
| | | List<MdcEquipmentPunch> queryList(); |
| | | |
| | | void workUp(MdcEquipmentPunch mdcEquipmentPunch); |
| | | |
| | | void workDown(MdcEquipmentPunch mdcEquipmentPunch); |
| | | void fillPunchRates(List<MdcEquipmentPunch> punchList); |
| | | |
| | | /** |
| | | * 鏌ヨ鎸囧畾鏃ユ湡鐨勮澶囨墦鍗℃暟鎹紙閫氬父鏄槰澶╋級 |
| | | */ |
| | | List<MdcEquipmentPunch> getYesterdayRecords(String targetDate); |
| | | } |