lyh
2025-06-25 e9ecb77b023be7d123a01342f54ab8ce5f463513
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/mapper/DncPassLogMapper.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,18 @@
package org.jeecg.modules.dnc.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.dnc.entity.DncPassLog;
/**
 * @author clown
 * * @date 2023/11/29
 */
public interface DncPassLogMapper extends BaseMapper<DncPassLog> {
    /**
     * æŸ¥è¯¢æŸä¸€å¤©æœ€åŽä¸€æ¡è®°å½•
     * @param dayTime
     * @return
     */
    DncPassLog findDateTimeDay(@Param("dayTime")String dayTime);
}