org.unlaxer.jaddress.dao.ZipBasedAddressDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of japanese-address-parser-impl Show documentation
Show all versions of japanese-address-parser-impl Show documentation
a simplejapanese address parser
The newest version!
package org.unlaxer.jaddress.dao;
import java.util.List;
import org.seasar.doma.Dao;
import org.seasar.doma.Select;
import org.unlaxer.jaddress.entity.jyuusyojp.ZipBasedAddressObject;
import org.unlaxer.jaddress.entity.standard.郵便番号;
@Dao
@InjectConfig
public interface ZipBasedAddressDao {
@Select()
List selectAll();
@Select()
List selectByZip(郵便番号 zip);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy