buhuazhen
2 天以前 392366ea36a839e5d0ea05968e6da31cd53a9ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.business.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.business.entity.DuePayable;
import org.mapstruct.Mapper;
 
/**
* @author buhuazhen
* @description 针对表【due_payable(应付款表)】的数据库操作Mapper
* @createDate 2025-08-26 16:12:56
* @Entity generator.domain.DuePayable
*/
public interface DuePayableMapper extends BaseMapper<DuePayable> {
 
}