Files
smartDriveEE/src/main/java/com/rj/service/ILbBuyAccountService.java
2026-06-01 01:12:34 +08:00

34 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbBuyAccount;
import java.util.List;
import java.util.Map;
public interface ILbBuyAccountService extends IService<LbBuyAccount> {
Map<String, Object> add(LbBuyAccount entity);
Map<String, Object> update(LbBuyAccount entity);
Map<String, Object> deleteById(String id);
Map<String, Object> pageQuery(Integer current,
Integer size,
String tenantId,
String tenantName,
String loginAccount,
String nickname,
String referrerPhone,
String referrerName,
String createTimeStart,
String createTimeEnd);
/**
* 按账号 ID 列表批量抢购:每个账号使用其 token_front 与 max_grab_count
* tenant_id 关联 lb_third_integration_config 解析 URL 与 appStr。
*/
Map<String, Object> rushBuyByIds(List<String> ids);
}