删除废弃代码

This commit is contained in:
Guoqs
2024-11-29 16:02:51 +08:00
parent 8bb6b3530b
commit 9abaf38542
12 changed files with 0 additions and 1078 deletions

View File

@@ -1,70 +0,0 @@
package com.jsowell.pile.mapper;
import java.util.List;
import com.jsowell.pile.domain.shareprofit.ShareprofitGroup;
import com.jsowell.pile.vo.web.ShareprofitGroupVO;
import org.springframework.stereotype.Repository;
/**
* 运营商分润组Mapper接口
*
* @author jsowell
* @date 2024-09-12
*/
@Repository
public interface ShareprofitGroupMapper {
/**
* 查询运营商分润组
*
* @param id 运营商分润组主键
* @return 运营商分润组
*/
public ShareprofitGroup selectShareprofitGroupById(Long id);
/**
* 查询运营商分润组列表
*
* @param shareprofitGroup 运营商分润组
* @return 运营商分润组集合
*/
public List<ShareprofitGroup> selectShareprofitGroupList(ShareprofitGroup shareprofitGroup);
/**
* 新增运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
public int insertShareprofitGroup(ShareprofitGroup shareprofitGroup);
/**
* 修改运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
public int updateShareprofitGroup(ShareprofitGroup shareprofitGroup);
/**
* 删除运营商分润组
*
* @param id 运营商分润组主键
* @return 结果
*/
public int deleteShareprofitGroupById(Long id);
/**
* 批量删除运营商分润组
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteShareprofitGroupByIds(Long[] ids);
/**
* 查询运营商分润组列表VO
* @param shareprofitGroup
*/
List<ShareprofitGroupVO> getShareprofitGroupVOList(ShareprofitGroup shareprofitGroup);
}

View File

@@ -1,63 +0,0 @@
package com.jsowell.pile.mapper;
import java.util.List;
import com.jsowell.pile.domain.shareprofit.ShareprofitMerchantMemberRelation;
import org.springframework.stereotype.Repository;
/**
* 运营商--分润人关系Mapper接口
*
* @author jsowell
* @date 2024-09-12
*/
@Repository
public interface ShareprofitMerchantMemberRelationMapper {
/**
* 查询运营商--分润人关系
*
* @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 id 运营商--分润人关系主键
* @return 结果
*/
public int deleteShareprofitMerchantMemberRelationById(Long id);
/**
* 批量删除运营商--分润人关系
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteShareprofitMerchantMemberRelationByIds(Long[] ids);
}