| | |
| | | import com.dsh.competition.entity.OperatorUser; |
| | | import com.dsh.competition.feignclient.other.model.Store; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | | import java.util.List; |
| | |
| | | * 根据运营商id获取对应运营商分账比例 返回格式: 微信分账比例,支付宝分账比例 |
| | | * @return |
| | | */ |
| | | @PostMapping("/base/getProportionByOperatorId") |
| | | String getProportionByOperatorId(Integer id); |
| | | @PostMapping("/base/getProportionByOperatorId/{id}") |
| | | String getProportionByOperatorId(@PathVariable("id") Integer id); |
| | | /** |
| | | * 根据运营商id获取对应运营商商户号 |
| | | * @return |
| | |
| | | @PostMapping("/base/getSMIDByOperatorId") |
| | | String getSMIDByOperatorId(Integer id); |
| | | // 根据运营商id获取微信商户号 |
| | | @PostMapping("/base/getmerchantNumberByOperatorId") |
| | | String getmerchantNumberByOperatorId(Integer id); |
| | | @PostMapping("/base/getmerchantNumberByOperatorId/{id}") |
| | | String getmerchantNumberByOperatorId(@PathVariable("id")Integer id); |
| | | /** |
| | | * 根据名称模糊搜索门店 |
| | | * |