knu project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
438 B

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package kr.co.kihyun.spring;
import java.util.Set;
import kr.co.kihyun.beans.entity.MoumiEntity;
/**
*
* @author bhs
*/
public interface MoumiDao<T extends MoumiEntity> {
public T load(Class<T> c, Long id);
public void store(Class<T> c, T pc);
public Set<String> getDirtyFields();
public void addDirtyField(String field);
}