package com.nanometer.smartlab.service; import com.nanometer.smartlab.entity.OpeApplyOrder; import java.util.List; /** * Created by johnny on 17/12/15. */ public interface OpeApplyOrderService { public List getOpeApplyOrderList(Long opeOrderId, Long opeApplyId); public int getOpeApplyOrderTotalCount(Long opeOrderId, Long opeApplyId); public OpeApplyOrder insertOpeApplyOrder(OpeApplyOrder opeApplyOrder); public int batchInsertOpeApplyOrder(List opeApplyOrderList); }