2024-09-25 16:05:17 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
2024-09-25 17:07:17 +08:00
|
|
|
import com.jsowell.pile.domain.StationSplitConfig;
|
2024-09-26 13:36:17 +08:00
|
|
|
import com.jsowell.pile.dto.SplitConfigDTO;
|
2024-09-27 17:52:12 +08:00
|
|
|
import com.jsowell.pile.vo.web.ShareMemberVO;
|
2024-09-25 17:07:17 +08:00
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2024-09-26 13:37:56 +08:00
|
|
|
/**
|
|
|
|
|
* 站点分成配置service
|
|
|
|
|
*/
|
2024-09-25 16:05:17 +08:00
|
|
|
public interface StationSplitConfigService{
|
|
|
|
|
|
2024-09-25 17:07:17 +08:00
|
|
|
// 根据站点id查询站点分账配置信息
|
|
|
|
|
List<StationSplitConfig> queryByStationId(String stationId);
|
|
|
|
|
|
2024-09-27 17:52:12 +08:00
|
|
|
List<ShareMemberVO> queryShareMembersByStationId(String stationId);
|
|
|
|
|
|
2024-09-25 17:07:17 +08:00
|
|
|
// 插入站点分账配置信息
|
2024-09-27 16:41:02 +08:00
|
|
|
int settingSplitConfig(SplitConfigDTO splitConfigDTO);
|
2024-09-25 16:05:17 +08:00
|
|
|
|
|
|
|
|
}
|