| | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.store.StoreAttrDto; |
| | | import com.java110.dto.store.StoreDto; |
| | | import com.java110.dto.store.StoreUserDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | |
| | | @RequestMapping(value = "/getStoreCount", method = RequestMethod.POST) |
| | | public int getStoreCount(@RequestBody StoreDto storeDto); |
| | | |
| | | /** |
| | | * 查询员工和员工所属商户信息 |
| | | * |
| | | * @param storeUserDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getStoreUserInfo", method = RequestMethod.POST) |
| | | public List<StoreUserDto> getStoreUserInfo(@RequestBody StoreUserDto storeUserDto); |
| | | } |