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

shz.orm.entity.RecordEntity Maven / Gradle / Ivy

The newest version!
package shz.orm.entity;

import shz.orm.record.RecordInfo;

import java.util.List;

public interface RecordEntity {
    Long getId();

    void setId(Long id);

    RecordInfo forInsert();

    List forSelect();

    RecordInfo forSelectByKey();

    String key();

    List keyFieldNames();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy