货物包增长预测功能代码框架

This commit is contained in:
2026-05-26 08:39:08 +08:00
parent c0fed06eaa
commit 32fce665ea
6 changed files with 521 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.LbGoods;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface LbGoodsMapper extends BaseMapper<LbGoods> {
}