退库管理

This commit is contained in:
2025-06-28 13:20:25 +08:00
parent 2d7639f670
commit 304cb87a71
16 changed files with 529 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
package com.ruoyi.oa.mapper;
import com.ruoyi.oa.domain.SysOaWarehouseLog;
import com.ruoyi.oa.domain.vo.SysOaWarehouseLogVo;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
/**
* 日志Mapper接口
*
* @author ruoyi
* @date 2025-06-28
*/
public interface SysOaWarehouseLogMapper extends BaseMapperPlus<SysOaWarehouseLogMapper, SysOaWarehouseLog, SysOaWarehouseLogVo> {
}