old mode 100644
new mode 100755
| | |
| | | import com.java110.dto.store.StoreAttrDto; |
| | | import com.java110.dto.store.StoreDto; |
| | | import com.java110.dto.store.StoreUserDto; |
| | | import com.java110.po.store.StorePo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | public int getStoreCount(@RequestBody StoreDto storeDto); |
| | | |
| | | /** |
| | | * 修改商户信息 |
| | | * @param storePo |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/updateStore", method = RequestMethod.POST) |
| | | public int updateStore(@RequestBody StorePo storePo); |
| | | |
| | | /** |
| | | * 查询员工和员工所属商户信息 |
| | | * |
| | | * @param storeUserDto |
| | |
| | | @RequestMapping(value = "/getStoreUserInfo", method = RequestMethod.POST) |
| | | public List<StoreUserDto> getStoreUserInfo(@RequestBody StoreUserDto storeUserDto); |
| | | |
| | | |
| | | /** |
| | | * 查询商户员工数量 |
| | | * |
| | | * @param storeUserDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getStoreStaffCount", method = RequestMethod.POST) |
| | | int getStoreStaffCount(@RequestBody StoreUserDto storeUserDto); |
| | | |
| | | /** |
| | | * 查询商户员工 |
| | | * |
| | | * @param storeUserDto |
| | | * @return |
| | | */ |