Interface ModelHistoryRepository
-
- All Known Implementing Classes:
ModelHistoryRepositoryImpl
public interface ModelHistoryRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(ModelHistory modelHistory)List<ModelHistory>findByModelId(String modelId)List<ModelHistory>findByModelTypAndCreatedBy(String createdBy, Integer modelType)ModelHistoryget(String id)voidsave(ModelHistory modelHistory)
-
-
-
Method Detail
-
save
void save(ModelHistory modelHistory)
-
delete
void delete(ModelHistory modelHistory)
-
get
ModelHistory get(String id)
-
findByModelTypAndCreatedBy
List<ModelHistory> findByModelTypAndCreatedBy(String createdBy, Integer modelType)
-
findByModelId
List<ModelHistory> findByModelId(String modelId)
-
-