com.github.zzlhy.func.SaveDataHandler Maven / Gradle / Ivy
package com.github.zzlhy.func;
/**
* 保存数据的方法
* Created by Administrator on 2018-10-16.
*/
@FunctionalInterface
public interface SaveDataHandler {
void save(T t);
}
package com.github.zzlhy.func;
/**
* 保存数据的方法
* Created by Administrator on 2018-10-16.
*/
@FunctionalInterface
public interface SaveDataHandler {
void save(T t);
}