| | |
| | | import com.java110.acct.bmo.accountBond.IGetAccountBondBMO; |
| | | import com.java110.acct.bmo.accountBond.ISaveAccountBondBMO; |
| | | import com.java110.acct.bmo.accountBond.IUpdateAccountBondBMO; |
| | | import com.java110.dto.accountBond.AccountBondDto; |
| | | import com.java110.po.accountBond.AccountBondPo; |
| | | import com.java110.dto.account.AccountBondDto; |
| | | import com.java110.po.account.AccountBondPo; |
| | | import com.java110.utils.util.Assert; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | |
| | | |
| | | AccountBondPo accountBondPo = BeanConvertUtil.covertBean(reqJson, AccountBondPo.class); |
| | | //保证金类型默认未店铺类型,为6006,暂时写死方便后期扩展其他类型。 |
| | | accountBondPo.setBondType( "6006" ); |
| | | return saveAccountBondBMOImpl.save(accountBondPo); |
| | | } |
| | | |