package com.xzx.gc.user.controller; import com.xzx.gc.common.request.BaseController; import com.xzx.gc.user.service.JhyInfoService; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RestController; @RestController @Api(tags = {"集物员--集物员管理"}) @Slf4j public class AdminJhyInfoController extends BaseController { @Autowired private JhyInfoService jhyInfoService; }