| | |
| | | import com.vci.ubcs.system.vo.MdmCountConfigVO; |
| | | import io.swagger.annotations.Api; |
| | | import lombok.AllArgsConstructor; |
| | | import oracle.jdbc.proxy.annotation.Post; |
| | | import org.springblade.core.tenant.annotation.NonDS; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | |
| | | @PostMapping("/save") |
| | | public R saveConfig(@RequestBody MdmCountConfigVO mdmCountConfigVO){ |
| | | return R.status(countConfigService.saveMdmCountConfig(mdmCountConfigVO)); |
| | | return countConfigService.saveMdmCountConfig(mdmCountConfigVO); |
| | | } |
| | | |
| | | |