puzhibing
2023-11-25 53e7558400dcacecdce70e39ebfe1727740f9296
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
    }
}