| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface MallAgentRecordMapper extends BaseMapper<MallAgentRecord> { |
| | | |
| | | MallAgentRecord selectByMemberIdAndState(@Param("memberId")Long memberId, @Param("state")Integer applyIng); |
| | |
| | | void deleteByMemberIdAndState(@Param("memberId")Long memberId, @Param("state")Integer applyIng); |
| | | |
| | | ApiMallAgentRecordVo selectApiMallAgentRecordVoByMemberIdAndState(@Param("memberId")Long memberId, @Param("state")Integer applyIng); |
| | | |
| | | List<MallAgentRecord> selectByCity(@Param("city")String city); |
| | | } |