com.mycomm.itool.cache.TableCacheService Maven / Gradle / Ivy
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.mycomm.itool.cache;
import com.mycomm.itool.utils.MyQueryCondition;
import java.util.List;
/**
*
* @author jw362j
*/
public interface TableCacheService {
public Object get(Class clz, long id, boolean forceReload);
public List get(Class clz, MyQueryCondition condition);
public void put(Class clz, Object obj, long id);
public void removeObject(Class clz, long id);
}