You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.7 KiB
73 lines
2.7 KiB
|
|
package ${package}.rest;
|
|
|
|
import com.yxkadmin.annotation.Log;
|
|
import ${package}.domain.${className};
|
|
import ${package}.service.${className}Service;
|
|
import ${package}.service.dto.${className}QueryCriteria;
|
|
import org.springframework.data.domain.Pageable;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import io.swagger.annotations.*;
|
|
import java.io.IOException;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
/**
|
|
* @website https://yxk-admin.vip
|
|
* @author ${author}
|
|
* @date ${date}
|
|
**/
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
@Api(tags = "${apiAlias}管理")
|
|
@RequestMapping("/api/${changeClassName}")
|
|
public class ${className}Controller {
|
|
|
|
private final ${className}Service ${changeClassName}Service;
|
|
|
|
@Log("导出数据")
|
|
@ApiOperation("导出数据")
|
|
@GetMapping(value = "/download")
|
|
@PreAuthorize("@el.check('${changeClassName}:list')")
|
|
public void download(HttpServletResponse response, ${className}QueryCriteria criteria) throws IOException {
|
|
${changeClassName}Service.download(${changeClassName}Service.queryAll(criteria), response);
|
|
}
|
|
|
|
@GetMapping
|
|
@Log("查询${apiAlias}")
|
|
@ApiOperation("查询${apiAlias}")
|
|
@PreAuthorize("@el.check('${changeClassName}:list')")
|
|
public ResponseEntity<Object> query(${className}QueryCriteria criteria, Pageable pageable){
|
|
return new ResponseEntity<>(${changeClassName}Service.queryAll(criteria,pageable),HttpStatus.OK);
|
|
}
|
|
|
|
@PostMapping
|
|
@Log("新增${apiAlias}")
|
|
@ApiOperation("新增${apiAlias}")
|
|
@PreAuthorize("@el.check('${changeClassName}:add')")
|
|
public ResponseEntity<Object> create(@Validated @RequestBody ${className} resources){
|
|
return new ResponseEntity<>(${changeClassName}Service.create(resources),HttpStatus.CREATED);
|
|
}
|
|
|
|
@PutMapping
|
|
@Log("修改${apiAlias}")
|
|
@ApiOperation("修改${apiAlias}")
|
|
@PreAuthorize("@el.check('${changeClassName}:edit')")
|
|
public ResponseEntity<Object> update(@Validated @RequestBody ${className} resources){
|
|
${changeClassName}Service.update(resources);
|
|
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
|
|
}
|
|
|
|
@Log("删除${apiAlias}")
|
|
@ApiOperation("删除${apiAlias}")
|
|
@PreAuthorize("@el.check('${changeClassName}:del')")
|
|
@DeleteMapping
|
|
public ResponseEntity<Object> delete(@RequestBody ${pkColumnType}[] ids) {
|
|
${changeClassName}Service.deleteAll(ids);
|
|
return new ResponseEntity<>(HttpStatus.OK);
|
|
}
|
|
}
|