IDao.java 385 Bytes
package com.vion.dao;


import com.vion.entity.OssClientEntity;

import java.util.Date;
import java.util.concurrent.ThreadPoolExecutor;


/**
 * @author 谢明辉
 * @createDate 2018-11-12
 * @description
 */
public interface IDao {


    void getAll(Date beginDate, Date endDate, OssClientEntity ossClientEntity, String facePath, String featurePath, ThreadPoolExecutor threadPool);
}