SpringBoot online collaborative office small program development full stack project combat

SpringBoot online collaborative office small program development full stack project combat

V: ititit111222333

    /**
     * 税率校验
     */
    private void checkTaxRate(TaxInformationVO vo) {
        // The summary item is set to 'when', no data is available
        if (ObjectUtil.equal(vo.getSummary(), DataState.ENABLED)) {
            // Data sometimes throws an exception
            if (ObjectUtil.isNotEmpty(vo.getSummary())) {
                throw new BusinessException("When the summary item is selected as', the tax rate cannot be associated. Please select again."); }}}Copy the code