feat(wms): 新增其他收支管理功能

- 新增其他收支实体类WmsOtherIncome及其相关VO、BO类
- 实现其他收支的增删改查接口IWmsOtherIncomeService
- 添加其他收支控制器WmsOtherIncomeController支持RESTful请求
- 配置MyBatis映射文件及Mapper接口支持数据库操作
- 在应付和应收业务中增加时间范围筛选字段和逻辑
This commit is contained in:
2025-09-26 14:21:14 +08:00
parent 0c01d4af8a
commit ffd8eebe60
12 changed files with 506 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.klp.mapper;
import com.klp.domain.WmsOtherIncome;
import com.klp.domain.vo.WmsOtherIncomeVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* 其他收支Mapper接口
*
* @author Joshi
* @date 2025-09-26
*/
public interface WmsOtherIncomeMapper extends BaseMapperPlus<WmsOtherIncomeMapper, WmsOtherIncome, WmsOtherIncomeVo> {
}