12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.emato.biz.service.merchant;
- import java.util.List;
- import com.emato.biz.domain.merchant.ThirdMerchantBiz;
- /**
- * 第三方商户信息Service接口
- *
- * @author scott
- * @date 2021-02-02
- */
- public interface IThirdMerchantBizService
- {
- /**
- * 查询第三方商户信息
- *
- * @param thirdMerchSn 第三方商户信息ID
- * @return 第三方商户信息
- */
- public ThirdMerchantBiz selectThirdMerchantBizById(String thirdMerchSn);
- /**
- * 查询第三方商户信息列表
- *
- * @param thirdMerchantBiz 第三方商户信息
- * @return 第三方商户信息集合
- */
- public List<ThirdMerchantBiz> selectThirdMerchantBizList(ThirdMerchantBiz thirdMerchantBiz);
- /**
- * 新增第三方商户信息
- *
- * @param thirdMerchantBiz 第三方商户信息
- * @return 结果
- */
- public int insertThirdMerchantBiz(ThirdMerchantBiz thirdMerchantBiz);
- /**
- * 修改第三方商户信息
- *
- * @param thirdMerchantBiz 第三方商户信息
- * @return 结果
- */
- public int updateThirdMerchantBiz(ThirdMerchantBiz thirdMerchantBiz);
- /**
- * 批量删除第三方商户信息
- *
- * @param thirdMerchSns 需要删除的第三方商户信息ID
- * @return 结果
- */
- public int deleteThirdMerchantBizByIds(String[] thirdMerchSns);
- /**
- * 删除第三方商户信息信息
- *
- * @param thirdMerchSn 第三方商户信息ID
- * @return 结果
- */
- public int deleteThirdMerchantBizById(String thirdMerchSn);
- }
|