lyh
2025-07-02 212eb8010c66c321dcdfc617725b37885573a44e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
}