package com.panzhihua.service_grid.api;
|
|
import com.panzhihua.common.model.dtos.grid.PageEasyAppDTO;
|
import com.panzhihua.common.model.vos.R;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
*
|
* @author lyq
|
* @version 1.0
|
* @since 1.0
|
* @date 2021-05-26
|
* */
|
@Slf4j
|
@RestController
|
@RequestMapping("/easy")
|
public class EasyPhotoApi {
|
|
@PostMapping("list")
|
public R list(@RequestBody PageEasyAppDTO easyAppDTO){
|
|
return R.ok();
|
}
|
}
|