12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.emato.biz.mapper.merchant;
- import java.util.List;
- import com.emato.biz.domain.merchant.MerchantBase;
- /**
- * 商户基本信息Mapper接口
- *
- * @author yangbo
- * @date 2021-02-01
- */
- public interface MerchantBaseMapper
- {
- /**
- * 查询商户基本信息
- *
- * @param merchSn 商户基本信息ID
- * @return 商户基本信息
- */
- public MerchantBase selectMerchantBaseById(String merchSn);
- /**
- * 查询商户基本信息列表
- *
- * @param merchantBase 商户基本信息
- * @return 商户基本信息集合
- */
- public List<MerchantBase> selectMerchantBaseList(MerchantBase merchantBase);
- /**
- * 新增商户基本信息
- *
- * @param merchantBase 商户基本信息
- * @return 结果
- */
- public int insertMerchantBase(MerchantBase merchantBase);
- /**
- * 修改商户基本信息
- *
- * @param merchantBase 商户基本信息
- * @return 结果
- */
- public int updateMerchantBase(MerchantBase merchantBase);
- /**
- * 删除商户基本信息
- *
- * @param merchSn 商户基本信息ID
- * @return 结果
- */
- public int deleteMerchantBaseById(String merchSn);
- /**
- * 批量删除商户基本信息
- *
- * @param merchSns 需要删除的数据ID
- * @return 结果
- */
- public int deleteMerchantBaseByIds(String[] merchSns);
- }
|