| | |
| | | import javax.annotation.Resource; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Propagation; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @param bondStatusEnum 保证金状态 |
| | | */ |
| | | @Override |
| | | @Transactional(propagation = Propagation.REQUIRES_NEW) |
| | | public void updateOrderAuctionBondStatus(List<Long> ids, BondStatusEnum bondStatusEnum) { |
| | | this.lambdaUpdate().set(OrderAuctionBond::getBoundStatus, bondStatusEnum) |
| | | .in(OrderAuctionBond::getId, ids).update(); |