kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
src/main/java/com/nanometer/smartlab/service/OpeApplyOrderService.java
@@ -9,7 +9,9 @@
 */
public interface OpeApplyOrderService {
    public List<OpeApplyOrder> getOpeApplyOrderList(String opeOrderId, String opeApplyId);
    public int getOpeApplyOrderTotalCount(String opeOrderId, String opeApplyId);
    public List<OpeApplyOrder> getOpeApplyOrderList(Long opeOrderId, Long opeApplyId);
    public int getOpeApplyOrderTotalCount(Long opeOrderId, Long opeApplyId);
    public OpeApplyOrder insertOpeApplyOrder(OpeApplyOrder opeApplyOrder);
    public int batchInsertOpeApplyOrder(List<OpeApplyOrder> opeApplyOrderList);
}