货物包增长预测功能代码框架
This commit is contained in:
30
src/main/java/com/rj/service/ILbGoodsService.java
Normal file
30
src/main/java/com/rj/service/ILbGoodsService.java
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user