抢单账户配置
This commit is contained in:
26
src/main/java/com/rj/service/ILbBuyAccountService.java
Normal file
26
src/main/java/com/rj/service/ILbBuyAccountService.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.rj.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.rj.entity.LbBuyAccount;
|
||||
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user