后管新增 运营商分润组页面

This commit is contained in:
Lemon
2024-09-18 11:07:47 +08:00
parent 89af8426ab
commit 33c1cc0b70
8 changed files with 178 additions and 57 deletions

View File

@@ -3,6 +3,7 @@ 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;
/**
@@ -60,4 +61,10 @@ public interface ShareprofitGroupMapper {
* @return 结果
*/
public int deleteShareprofitGroupByIds(Long[] ids);
/**
* 查询运营商分润组列表VO
* @param shareprofitGroup
*/
List<ShareprofitGroupVO> getShareprofitGroupVOList(ShareprofitGroup shareprofitGroup);
}