导出同事特权,增加和修正表字段

This commit is contained in:
2026-05-17 09:01:49 +08:00
parent f75c037ece
commit fb2f225b64
8 changed files with 284 additions and 72 deletions

View File

@@ -16,7 +16,8 @@ public interface ILbOrderRowService extends IService<LbOrderRow> {
Map<String, Object> pageQuery(
Integer current,
Integer size,
String tenantId,
String isResell,
String dataType,
String orderSn,
Long buyerId,
Long sellerId,
@@ -27,5 +28,9 @@ public interface ILbOrderRowService extends IService<LbOrderRow> {
* 按条件调用 hxrd 后台订单列表接口拉取数据,并 upsert 到 {@code lb_order_row}。
*/
Map<String, Object> syncFromHxrAdmin(
String buyTimeStart, String buyTimeEnd, String tenantId, Integer isResell);
String buyTimeStart,
String buyTimeEnd,
String tenantId,
Integer isResell,
String dataType);
}