79 lines
3.5 KiB
Plaintext
Raw Normal View History

2021-02-09 12:51:01 +08:00
package ${basePackage}.${table.moduleName}.controller.${table.businessName};
import org.springframework.web.bind.annotation.*;
2021-02-09 12:51:01 +08:00
import javax.annotation.Resource;
import org.springframework.validation.annotation.Validated;
import io.swagger.annotations.*;
2021-02-09 12:51:01 +08:00
import javax.validation.constraints.*;
import javax.validation.*;
import java.util.*;
2021-02-09 12:51:01 +08:00
import ${PageResultClassName};
import ${CommonResultClassName};
import static ${CommonResultClassName}.success;
import ${basePackage}.${table.moduleName}.controller.${table.businessName}.vo.*;
import ${basePackage}.${table.moduleName}.dal.dataobject.${table.businessName}.${table.className}DO;
2021-02-09 12:51:01 +08:00
import ${basePackage}.${table.moduleName}.convert.${table.businessName}.${table.className}Convert;
import ${basePackage}.${table.moduleName}.service.${table.businessName}.${table.className}Service;
2021-02-09 12:51:01 +08:00
@Api(tags = "${table.classComment}")
@RestController
2021-02-09 12:51:01 +08:00
##二级的 businessName 暂时不算在 HTTP 路径上,可以根据需要写
@RequestMapping("/${table.moduleName}/${simpleClassName_strikeCase}")
@Validated
2021-02-09 12:51:01 +08:00
public class ${table.className}Controller {
2021-02-09 12:51:01 +08:00
@Resource
private ${table.className}Service ${classNameVar}Service;
2021-02-09 12:51:01 +08:00
@ApiOperation("创建${table.classComment}")
@PostMapping("/create")
2021-02-09 12:51:01 +08:00
public CommonResult<${primaryColumn.javaType}> create${simpleClassName}(@Valid ${table.className}CreateReqVO createReqVO) {
return success(${classNameVar}Service.create${simpleClassName}(createReqVO));
}
2021-02-09 12:51:01 +08:00
@ApiOperation("更新${table.classComment}")
@PutMapping("/update")
public CommonResult<Boolean> update${simpleClassName}(@Valid ${table.className}UpdateReqVO updateReqVO) {
${classNameVar}Service.update${simpleClassName}(updateReqVO);
return success(true);
}
2021-02-10 17:45:04 +08:00
@ApiOperation("删除${table.classComment}")
@DeleteMapping("/delete")
2021-02-09 12:51:01 +08:00
@ApiImplicitParam(name = "id", value = "编号", required = true)
public CommonResult<Boolean> delete${simpleClassName}(@RequestParam("id") ${primaryColumn.javaType} id) {
${classNameVar}Service.delete${simpleClassName}(id);
return success(true);
}
@GetMapping("/get")
2021-02-09 12:51:01 +08:00
@ApiOperation("获得${table.classComment}")
2021-02-10 17:45:04 +08:00
@ApiImplicitParam(name = "id", value = "编号", required = true, dataTypeClass = ${primaryColumn.javaType}.class)
2021-02-09 12:51:01 +08:00
public CommonResult<${table.className}RespVO> get${simpleClassName}(@RequestParam("id") ${primaryColumn.javaType} id) {
${table.className}DO ${classNameVar} = ${classNameVar}Service.get${simpleClassName}(id);
return success(${table.className}Convert.INSTANCE.convert(${classNameVar}));
}
@GetMapping("/list")
2021-02-09 12:51:01 +08:00
@ApiOperation("获得${table.classComment}列表")
2021-02-10 17:45:04 +08:00
@ApiImplicitParam(name = "ids", value = "编号列表", required = true, dataTypeClass = List.class)
2021-02-09 12:51:01 +08:00
public CommonResult<List<${table.className}RespVO>> get${simpleClassName}List(@RequestParam("ids") Collection<${primaryColumn.javaType}> ids) {
List<${table.className}DO> list = ${classNameVar}Service.get${simpleClassName}List(ids);
return success(${table.className}Convert.INSTANCE.convertList(list));
}
2021-02-09 12:51:01 +08:00
@ApiOperation("获得${table.classComment}分页")
@GetMapping("/page")
2021-02-09 12:51:01 +08:00
public CommonResult<PageResult<${table.className}RespVO>> get${simpleClassName}Page(@Valid ${table.className}PageReqVO pageVO) {
PageResult<${table.className}DO> pageResult = ${classNameVar}Service.get${simpleClassName}Page(pageVO);
return success(${table.className}Convert.INSTANCE.convertPage(pageResult));
}
}