CompanyController.java 450 Bytes
package com.huaheng.pc.general.company.controller;

import com.huaheng.pc.general.company.service.CompanyService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.annotation.Resource;

@Controller
@RequestMapping("/general/company")
public class CompanyController {
    @Resource
    private CompanyService companyService;
    private String prefix = "general/company";
}