2025-08-13 10:33:03 +08:00
|
|
|
|
package com.klp.mapper;
|
|
|
|
|
|
|
2025-08-13 13:26:12 +08:00
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
2025-08-13 10:33:03 +08:00
|
|
|
|
import com.klp.domain.WmsPayable;
|
|
|
|
|
|
import com.klp.domain.vo.WmsPayableVo;
|
|
|
|
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
2025-08-13 13:26:12 +08:00
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
2025-08-13 10:33:03 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 应付款管理(宽松版)Mapper接口
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author klp
|
|
|
|
|
|
* @date 2025-08-13
|
|
|
|
|
|
*/
|
|
|
|
|
|
public interface WmsPayableMapper extends BaseMapperPlus<WmsPayableMapper, WmsPayable, WmsPayableVo> {
|
|
|
|
|
|
|
2025-08-13 13:26:12 +08:00
|
|
|
|
Page<WmsPayableVo> selectVoPagePlus(Page<Object> build, @Param("ew") QueryWrapper<WmsPayable> lqw);
|
2025-08-13 10:33:03 +08:00
|
|
|
|
}
|