抵扣金管理

This commit is contained in:
2026-05-21 11:09:04 +08:00
parent 6d0cfcdd84
commit b8aff6d0a0
5 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.LbDeductionAmount;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface LbDeductionAmountMapper extends BaseMapper<LbDeductionAmount> {
}