| 1234567891011121314151617181920212223242526272829 |
- package com.ydtech.modules.admin.controller;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.admin.model.dto.SysDeptAccountHistoryDto;
- import com.ydtech.modules.admin.service.SysDeptAccountHistoryService;
- import com.ydtech.modules.base.controller.BaseController;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- 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;
- @Api(tags = "机构账户历史明细表")
- @RequestMapping("/sysDeptAccountHistory")
- @RestController
- public class SysDeptAccountHistoryController extends BaseController {
- @Autowired
- private SysDeptAccountHistoryService sysDeptAccountHistoryService;
- @PostMapping("/queryPage")
- @ApiOperation(value = "机构账户表日志记录分页")
- public HttpResult getSysDeptAccountHistory(@RequestBody SysDeptAccountHistoryDto sysDeptAccountHistoryDto){
- return HttpResult.ok("", sysDeptAccountHistoryService.selectList(sysDeptAccountHistoryDto));
- }
- }
|