因为数据库连接问题导致的插入数据库异常

This commit is contained in:
2026-05-15 23:30:40 +08:00
parent 42b1555c80
commit d66daf375c
25 changed files with 1371 additions and 4 deletions

View File

@@ -0,0 +1,31 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbOrderRow;
import java.util.Map;
public interface ILbOrderRowService extends IService<LbOrderRow> {
Map<String, Object> add(LbOrderRow entity);
Map<String, Object> update(LbOrderRow entity);
Map<String, Object> deleteById(Long id);
Map<String, Object> pageQuery(
Integer current,
Integer size,
String tenantId,
String orderSn,
Long buyerId,
Long sellerId,
Integer status,
Long merchandiseId);
/**
* 按条件调用 hxrd 后台订单列表接口拉取数据,并 upsert 到 {@code lb_order_row}。
*/
Map<String, Object> syncFromHxrAdmin(
String buyTimeStart, String buyTimeEnd, String tenantId, Integer isResell);
}