mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
62 lines
1.9 KiB
Java
62 lines
1.9 KiB
Java
package com.jsowell.pile.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.jsowell.pile.domain.shareprofit.ShareprofitMerchantMemberRelation;
|
|
|
|
/**
|
|
* 运营商--分润人关系Service接口
|
|
*
|
|
* @author jsowell
|
|
* @date 2024-09-12
|
|
*/
|
|
public interface IShareprofitMerchantMemberRelationService {
|
|
/**
|
|
* 查询运营商--分润人关系
|
|
*
|
|
* @param id 运营商--分润人关系主键
|
|
* @return 运营商--分润人关系
|
|
*/
|
|
public ShareprofitMerchantMemberRelation selectShareprofitMerchantMemberRelationById(Long id);
|
|
|
|
/**
|
|
* 查询运营商--分润人关系列表
|
|
*
|
|
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
|
|
* @return 运营商--分润人关系集合
|
|
*/
|
|
public List<ShareprofitMerchantMemberRelation> selectShareprofitMerchantMemberRelationList(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation);
|
|
|
|
/**
|
|
* 新增运营商--分润人关系
|
|
*
|
|
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
|
|
* @return 结果
|
|
*/
|
|
public int insertShareprofitMerchantMemberRelation(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation);
|
|
|
|
/**
|
|
* 修改运营商--分润人关系
|
|
*
|
|
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
|
|
* @return 结果
|
|
*/
|
|
public int updateShareprofitMerchantMemberRelation(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation);
|
|
|
|
/**
|
|
* 批量删除运营商--分润人关系
|
|
*
|
|
* @param ids 需要删除的运营商--分润人关系主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteShareprofitMerchantMemberRelationByIds(Long[] ids);
|
|
|
|
/**
|
|
* 删除运营商--分润人关系信息
|
|
*
|
|
* @param id 运营商--分润人关系主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteShareprofitMerchantMemberRelationById(Long id);
|
|
}
|