package com.consum.base.controller;
|
|
import com.consum.base.BaseController;
|
import com.walker.web.ResponseValue;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: 物品分发单
|
* @date 2023/11/2 15:49 dep_form_lending
|
* TODO
|
*/
|
@RestController
|
@RequestMapping("/pc/dep/from/lending")
|
public class DepFormLendingController extends BaseController {
|
|
|
/**
|
* 添加数据
|
*
|
* @param id 数据ID
|
* @return 添加结果
|
*/
|
@PostMapping("/add")
|
public ResponseValue add(String id) {
|
// code for adding data
|
return null;
|
}
|
|
|
@GetMapping("/list")
|
public ResponseValue list() {
|
|
return null;
|
}
|
|
@GetMapping("/{id}")
|
public ResponseValue detail(@PathVariable String id) {
|
|
return null;
|
}
|
}
|