| | |
| | | import com.consum.model.po.FinSysTenantUser; |
| | | import com.walker.web.ResponseValue; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | |
| | | |
| | | |
| | | /** |
| | | * @author asus |
| | |
| | | * @description: 部门物品退回单 |
| | | * @date 2023/12/1 11:36 |
| | | */ |
| | | @Api(value = "部门物品退回", tags = "部门物品退回") |
| | | // @Api(value = "部门物品退回", tags = "部门物品退回") |
| | | @RestController |
| | | @RequestMapping("/pc/l/wh/using/form/back") |
| | | public class UsingFormBackController extends BaseController { |
| | |
| | | @Autowired |
| | | private UsingFormBackService usingFormBackService; |
| | | |
| | | @ApiOperation(value = "部门物品退回单新增接口", notes = "部门物品退回单新增接口") |
| | | // @ApiOperation(value = "部门物品退回单新增接口", notes = "部门物品退回单新增接口") |
| | | @PostMapping("/add") |
| | | public ResponseValue add() { |
| | | UsingFormBackParam usingFormBackParam = CommonUtil.getObjFromReqBody(UsingFormBackParam.class); |
| | |
| | | return ResponseValue.success(); |
| | | } |
| | | |
| | | @ApiOperation(value = "部门物品退回单查询接口", notes = "部门物品退回单查询接口") |
| | | // @ApiOperation(value = "部门物品退回单查询接口", notes = "部门物品退回单查询接口") |
| | | @GetMapping("/list") |
| | | public ResponseValue query() { |
| | | UsingFormBackQry usingFormBackParam = CommonUtil.getObjFromReq(UsingFormBackQry.class); |
| | |
| | | return ResponseValue.success(page); |
| | | } |
| | | |
| | | @ApiOperation(value = "部门物品退回单详情接口", notes = "部门物品退回单详情接口") |
| | | // @ApiOperation(value = "部门物品退回单详情接口", notes = "部门物品退回单详情接口") |
| | | @GetMapping("/detail") |
| | | public ResponseValue detail(Long id) { |
| | | FinSysTenantUser sysInfo = getSysInfo(); |
| | |
| | | return ResponseValue.success(detail); |
| | | } |
| | | |
| | | @ApiOperation(value = "部门物品退回明细查询接口", notes = "部门物品退回明细查询接口") |
| | | // @ApiOperation(value = "部门物品退回明细查询接口", notes = "部门物品退回明细查询接口") |
| | | @GetMapping("/list/detail") |
| | | public ResponseValue queryListDetail() { |
| | | UsingFormBackQry usingFormBackParam = CommonUtil.getObjFromReq(UsingFormBackQry.class); |