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

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,30 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbGoods;
import java.util.Map;
public interface ILbGoodsService extends IService<LbGoods> {
Map<String, Object> add(LbGoods entity);
Map<String, Object> update(LbGoods entity);
Map<String, Object> deleteById(Long id);
Map<String, Object> pageQuery(
Integer current,
Integer size,
String tenantId,
Long oldId,
Long userId,
String title,
Long sellerId,
Integer isShow,
Integer status,
String createdAtStart,
String createdAtEnd,
String updatedAtStart,
String updatedAtEnd);
}