cn.woodwhales.common.model.field.CommonFieldTimeInterface2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodwhales-common Show documentation
Show all versions of woodwhales-common Show documentation
https://github.com/woodwhales
package cn.woodwhales.common.model.field;
import java.util.Date;
/**
* @author: woodwhales
* 2020.9.18 21:33
*
*/
public interface CommonFieldTimeInterface2 {
/**
* 设置创建时间
* @param gmtCreate 创建时间
*/
void setGmtCreate(Date gmtCreate);
/**
* 获取创建时间
* @return 创建时间
*/
Date getGmtCreate();
/**
* 设置更新时间
* @param gmtModified 更新时间
*/
void setGmtModified(Date gmtModified);
/**
* 获取更新时间
* @return 更新时间
*/
Date getGmtModified();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy