com.mycomm.dao.dao4comm.annotation.OneToOneHandler 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.dao.dao4comm.annotation;
import java.lang.reflect.Field;
import org.springframework.jdbc.core.JdbcTemplate;
/**
*
* @author jw362j
*/
public interface OneToOneHandler {
public void handleOneToOne(JdbcTemplate jdbcTemplate ,Field field,Object instance,long mappingId);
}