Package com.alibaba.cobar.client.test.services

Source Code of com.alibaba.cobar.client.test.services.NormalOfferService

package com.alibaba.cobar.client.test.services;

import java.util.List;

import org.springframework.transaction.annotation.Transactional;

import com.alibaba.cobar.client.entities.Offer;
import com.alibaba.cobar.client.support.vo.BatchInsertTask;

public class NormalOfferService extends AbstractOfferService {

    @Transactional
    public void createOffersInBatch(List<Offer> offers) {
        getSqlMapClientTemplate().insert("com.alibaba.cobar.client.entities.Offer.batchInsert", new BatchInsertTask(offers));
    }

}
TOP

Related Classes of com.alibaba.cobar.client.test.services.NormalOfferService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.