package com.dsh.account.controller; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.dsh.account.entity.TCityManager; import com.dsh.account.entity.TStoreStaff; import com.dsh.account.feignclient.model.CityListQuery; import com.dsh.account.service.TStoreStaffService; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; @RestController @RequestMapping("") public class StoreStaffController { @Resource private TStoreStaffService tsstaService; @ResponseBody @PostMapping("/base/storeStaff/infoById") public TStoreStaff baseInfo(@RequestBody Integer id) { return tsstaService.getById(id); } }