package ${package.Controller}; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import ${package.Service}.${table.serviceName}; <#if restControllerStyle> import org.springframework.web.bind.annotation.RestController; <#else> import org.springframework.stereotype.Controller; #if> <#if superControllerClassPackage??> import ${superControllerClassPackage}; #if> /** *
* ${table.comment!} 前端控制器 *
* * @author ${author} * @since ${date} */ <#if restControllerStyle> @RestController <#else> @Controller #if> @RequestMapping("/<#if controllerMappingHyphenStyle??>${controllerMappingHyphen}<#else>${table.entityPath}#if>") <#if kotlin> class ${table.controllerName}<#if superControllerClass??> : ${superControllerClass}()#if> <#else> <#if superControllerClass??> public class ${table.controllerName} extends ${superControllerClass} { <#else> public class ${table.controllerName} { #if> @Autowired private ${table.serviceName} <#if controllerMappingHyphenStyle??>${controllerMappingHyphen}<#else>${table.entityPath}#if>Service; } #if>