1
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.ruoyi.jarvis.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.jarvis.domain.TgScalperPhone;
|
||||
|
||||
/**
|
||||
* TG 黄牛电话库 Mapper
|
||||
*/
|
||||
public interface TgScalperPhoneMapper
|
||||
{
|
||||
TgScalperPhone selectTgScalperPhoneById(Long id);
|
||||
|
||||
List<TgScalperPhone> selectTgScalperPhoneList(TgScalperPhone q);
|
||||
|
||||
/** 按手机号查(不限状态,供唯一性校验) */
|
||||
TgScalperPhone selectTgScalperPhoneByPhone(String phone);
|
||||
|
||||
/** 启用状态下按手机号查(开/慢走前置) */
|
||||
TgScalperPhone selectEnabledByPhone(String phone);
|
||||
|
||||
int insertTgScalperPhone(TgScalperPhone row);
|
||||
|
||||
int updateTgScalperPhone(TgScalperPhone row);
|
||||
|
||||
int deleteTgScalperPhoneById(Long id);
|
||||
|
||||
int deleteTgScalperPhoneByIds(Long[] ids);
|
||||
}
|
||||
Reference in New Issue
Block a user