com.github.azbh111.utils.java.model.Updatable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.model;
/**
*
* @author pyz
* @date 2019/4/22 9:24 AM
*/
public interface Updatable> extends IDAccessor {
/**
* 用Updator创建Updatable
*
* @param t
*/
void from(T t);
/**
* 用Updator更新Updatable
*
* @param t
*/
void update(T t);
}