You've already forked FrameTour-BE
修改mapper文件路径
添加“MessageRecordMapper”
This commit is contained in:
22
src/main/java/com/ycwl/basic/mapper/BrokerMapper.java
Normal file
22
src/main/java/com/ycwl/basic/mapper/BrokerMapper.java
Normal file
@ -0,0 +1,22 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.ycwl.basic.model.pc.broker.entity.BrokerEntity;
|
||||
import com.ycwl.basic.model.pc.broker.req.BrokerReqQuery;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author:longbinbin
|
||||
* @Date:2024/11/29 14:15
|
||||
* 推客/推广人
|
||||
*/
|
||||
@Mapper
|
||||
public interface BrokerMapper {
|
||||
List<BrokerEntity> list(BrokerReqQuery brokerReqQuery);
|
||||
BrokerEntity getById(Long id);
|
||||
int add(BrokerEntity broker);
|
||||
int deleteById(Long id);
|
||||
int update(BrokerEntity broker);
|
||||
int updateStatus(Long id);
|
||||
}
|
Reference in New Issue
Block a user