All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.jaddress.dao.JyuusyoJPDao Maven / Gradle / Ivy

package org.unlaxer.jaddress.dao;

import java.util.List;

import org.seasar.doma.Dao;
import org.seasar.doma.Script;
import org.seasar.doma.Select;
import org.unlaxer.jaddress.entity.jyuusyojp.JyuusyoJPObject;
import org.unlaxer.jaddress.entity.standard.郵便番号;

@Dao
@InjectConfig
public interface JyuusyoJPDao {
	
	@Select()
	List selectAll();
	
	@Select()
	List selectByZip(郵便番号 zip);
	
	@Script
	void addIndex();
	
	@Script
	void dropIndex();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy