View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.fofo;import org.springframework.stereotype.Repository;import com.spice.profitmandi.dao.entity.fofo.Mou;@Repositorypublic interface MouRepository {public void persist(Mou mou);public Mou selectByFofoId(int fofoId);}