| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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>
- /**
- * <p>
- * ${table.comment!} 前端控制器
- * </p>
- *
- * @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>
|