mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
新增 分润组数据库、实体类、Service
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jsowell.pile.domain.shareprofit.ShareprofitGroup;
|
||||
|
||||
/**
|
||||
* 运营商分润组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);
|
||||
|
||||
/**
|
||||
* 新增运营商分润组
|
||||
*
|
||||
* @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);
|
||||
}
|
||||
Reference in New Issue
Block a user