package cn.timer.api.service; import cn.timer.api.bean.kqgl.PunchCardDetails; import cn.timer.api.bean.kqgl.PunchRecord; import java.util.List; /** * @author wuqingjun * @email 284718418@qq.com * @date 2021/11/12 */ public interface KqglAssoDkjlService{ /** * 打卡记录修改批处理 * @param entityList * @return */ void updateKqglAssoDkjlById(List<PunchRecord> entityList); /** * 打卡明细修改批处理 * @param entityList * @return */ void updateKqglAssoDkmxById(List<PunchCardDetails> entityList); }