IInvokeHandler.java 216 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
package com.lyms.etl.service;

import java.text.ParseException;

/**
* @Author: litao
* @Date: 2017/5/5 0005 20:21
* @Version: V1.0
*/
public interface IInvokeHandler {
void invoke() throws ParseException;
}