All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.woodwhales.common.model.field.CommonFieldTimeInterface Maven / Gradle / Ivy

There is a newer version: 3.8.3
Show newest version
package cn.woodwhales.common.model.field;

import java.util.Date;

/**
 * common
 * @author: woodwhales
 * 20.9.18 21:30
 *
 */
public interface CommonFieldTimeInterface {

    /**
     * 设置创建时间
     * @param createTime 创建时间
     */
    void setCreateTime(Date createTime);

    /**
     * 获取创建时间
     * @return 创建时间
     */
    Date getCreateTime();

    /**
     * 设置更新时间
     * @param updateTime 更新时间
     */
    void setUpdateTime(Date updateTime);

    /**
     * 获取更新时间
     * @return 更新时间
     */
    Date getUpdateTime();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy