| 12345678910111213141516171819202122232425 |
- package com.malk.huagao.mapper;
- import com.malk.huagao.entity.KdYdOutbound;
- import com.malk.huagao.entity.KdYdReceivable;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Select;
- import java.time.LocalDateTime;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author LQY
- * @since 2025-10-16
- */
- public interface KdYdReceivableMapper extends BaseMapper<KdYdReceivable> {
- @Select("SELECT id, forminstid, djbh, update_time FROM KD_YD_RECEIVABLE " +
- "WHERE update_time >= #{startTime} " +
- "AND djbh IS NOT NULL")
- List<KdYdReceivable> selectRecentUpdated(LocalDateTime startTime);
- }
|