删除废弃代码

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,69 +0,0 @@
package com.jsowell.pile.service;
import java.util.List;
import com.jsowell.pile.domain.shareprofit.ShareprofitGroup;
import com.jsowell.pile.vo.web.ShareprofitGroupVO;
/**
* 运营商分润组Service接口
*
* @author jsowell
* @date 2024-09-12
*/
public interface IShareprofitGroupService {
/**
* 查询运营商分润组
*
* @param id 运营商分润组主键
* @return 运营商分润组
*/
public ShareprofitGroup selectShareprofitGroupById(Long id);
/**
* 查询运营商分润组列表
*
* @param shareprofitGroup 运营商分润组
* @return 运营商分润组集合
*/
public List<ShareprofitGroup> selectShareprofitGroupList(ShareprofitGroup shareprofitGroup);
/**
* 查询运营商分润组列表VOList
* @param shareprofitGroup
* @return
*/
List<ShareprofitGroupVO> getShareprofitGroupVOList(ShareprofitGroup shareprofitGroup);
/**
* 新增运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
public int insertShareprofitGroup(ShareprofitGroup shareprofitGroup);
/**
* 修改运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
public int updateShareprofitGroup(ShareprofitGroup shareprofitGroup);
/**
* 批量删除运营商分润组
*
* @param ids 需要删除的运营商分润组主键集合
* @return 结果
*/
public int deleteShareprofitGroupByIds(Long[] ids);
/**
* 删除运营商分润组信息
*
* @param id 运营商分润组主键
* @return 结果
*/
public int deleteShareprofitGroupById(Long id);
}

View File

@@ -1,61 +0,0 @@
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);
}

View File

@@ -1,96 +0,0 @@
package com.jsowell.pile.service.impl;
import java.util.List;
import com.jsowell.common.util.DateUtils;
import com.jsowell.pile.vo.web.ShareprofitGroupVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jsowell.pile.mapper.ShareprofitGroupMapper;
import com.jsowell.pile.domain.shareprofit.ShareprofitGroup;
import com.jsowell.pile.service.IShareprofitGroupService;
/**
* 运营商分润组Service业务层处理
*
* @author jsowell
* @date 2024-09-12
*/
@Service
public class ShareprofitGroupServiceImpl implements IShareprofitGroupService {
@Autowired
private ShareprofitGroupMapper shareprofitGroupMapper;
/**
* 查询运营商分润组
*
* @param id 运营商分润组主键
* @return 运营商分润组
*/
@Override
public ShareprofitGroup selectShareprofitGroupById(Long id) {
return shareprofitGroupMapper.selectShareprofitGroupById(id);
}
/**
* 查询运营商分润组列表
*
* @param shareprofitGroup 运营商分润组
* @return 运营商分润组
*/
@Override
public List<ShareprofitGroup> selectShareprofitGroupList(ShareprofitGroup shareprofitGroup) {
return shareprofitGroupMapper.selectShareprofitGroupList(shareprofitGroup);
}
@Override
public List<ShareprofitGroupVO> getShareprofitGroupVOList(ShareprofitGroup shareprofitGroup){
return shareprofitGroupMapper.getShareprofitGroupVOList(shareprofitGroup);
}
/**
* 新增运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
@Override
public int insertShareprofitGroup(ShareprofitGroup shareprofitGroup) {
shareprofitGroup.setCreateTime(DateUtils.getNowDate());
return shareprofitGroupMapper.insertShareprofitGroup(shareprofitGroup);
}
/**
* 修改运营商分润组
*
* @param shareprofitGroup 运营商分润组
* @return 结果
*/
@Override
public int updateShareprofitGroup(ShareprofitGroup shareprofitGroup) {
shareprofitGroup.setUpdateTime(DateUtils.getNowDate());
return shareprofitGroupMapper.updateShareprofitGroup(shareprofitGroup);
}
/**
* 批量删除运营商分润组
*
* @param ids 需要删除的运营商分润组主键
* @return 结果
*/
@Override
public int deleteShareprofitGroupByIds(Long[] ids) {
return shareprofitGroupMapper.deleteShareprofitGroupByIds(ids);
}
/**
* 删除运营商分润组信息
*
* @param id 运营商分润组主键
* @return 结果
*/
@Override
public int deleteShareprofitGroupById(Long id) {
return shareprofitGroupMapper.deleteShareprofitGroupById(id);
}
}

View File

@@ -1,89 +0,0 @@
package com.jsowell.pile.service.impl;
import java.util.List;
import com.jsowell.common.util.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jsowell.pile.mapper.ShareprofitMerchantMemberRelationMapper;
import com.jsowell.pile.domain.shareprofit.ShareprofitMerchantMemberRelation;
import com.jsowell.pile.service.IShareprofitMerchantMemberRelationService;
/**
* 运营商--分润人关系Service业务层处理
*
* @author jsowell
* @date 2024-09-12
*/
@Service
public class ShareprofitMerchantMemberRelationServiceImpl implements IShareprofitMerchantMemberRelationService {
@Autowired
private ShareprofitMerchantMemberRelationMapper shareprofitMerchantMemberRelationMapper;
/**
* 查询运营商--分润人关系
*
* @param id 运营商--分润人关系主键
* @return 运营商--分润人关系
*/
@Override
public ShareprofitMerchantMemberRelation selectShareprofitMerchantMemberRelationById(Long id) {
return shareprofitMerchantMemberRelationMapper.selectShareprofitMerchantMemberRelationById(id);
}
/**
* 查询运营商--分润人关系列表
*
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
* @return 运营商--分润人关系
*/
@Override
public List<ShareprofitMerchantMemberRelation> selectShareprofitMerchantMemberRelationList(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation) {
return shareprofitMerchantMemberRelationMapper.selectShareprofitMerchantMemberRelationList(shareprofitMerchantMemberRelation);
}
/**
* 新增运营商--分润人关系
*
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
* @return 结果
*/
@Override
public int insertShareprofitMerchantMemberRelation(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation) {
shareprofitMerchantMemberRelation.setCreateTime(DateUtils.getNowDate());
return shareprofitMerchantMemberRelationMapper.insertShareprofitMerchantMemberRelation(shareprofitMerchantMemberRelation);
}
/**
* 修改运营商--分润人关系
*
* @param shareprofitMerchantMemberRelation 运营商--分润人关系
* @return 结果
*/
@Override
public int updateShareprofitMerchantMemberRelation(ShareprofitMerchantMemberRelation shareprofitMerchantMemberRelation) {
return shareprofitMerchantMemberRelationMapper.updateShareprofitMerchantMemberRelation(shareprofitMerchantMemberRelation);
}
/**
* 批量删除运营商--分润人关系
*
* @param ids 需要删除的运营商--分润人关系主键
* @return 结果
*/
@Override
public int deleteShareprofitMerchantMemberRelationByIds(Long[] ids) {
return shareprofitMerchantMemberRelationMapper.deleteShareprofitMerchantMemberRelationByIds(ids);
}
/**
* 删除运营商--分润人关系信息
*
* @param id 运营商--分润人关系主键
* @return 结果
*/
@Override
public int deleteShareprofitMerchantMemberRelationById(Long id) {
return shareprofitMerchantMemberRelationMapper.deleteShareprofitMerchantMemberRelationById(id);
}
}