/* * 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 { public T load(Class c, Long id); public void store(Class c, T pc); public Set getDirtyFields(); public void addDirtyField(String field); }