87 lines
3.3 KiB
Plaintext
87 lines
3.3 KiB
Plaintext
/*
|
|
* Copyright 2019-2020 Zheng Jie
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package ${package}.rest;
|
|
|
|
import com.youchain.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://eladmin.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 export${className}(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}(${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${className}(@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${className}(@Validated @RequestBody ${className} resources){
|
|
${changeClassName}Service.update(resources);
|
|
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
|
|
}
|
|
|
|
@DeleteMapping
|
|
@Log("删除${apiAlias}")
|
|
@ApiOperation("删除${apiAlias}")
|
|
@PreAuthorize("@el.check('${changeClassName}:del')")
|
|
public ResponseEntity<Object> delete${className}(@RequestBody ${pkColumnType}[] ids) {
|
|
${changeClassName}Service.deleteAll(ids);
|
|
return new ResponseEntity<>(HttpStatus.OK);
|
|
}
|
|
} |