15 lines
285 B
Java
15 lines
285 B
Java
package seed.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import seed.map.T_POSTCODE;
|
|
|
|
public interface CommonPostCodeDAO {
|
|
|
|
public List<T_POSTCODE> getCommonPostCodeList(String search);
|
|
|
|
public Long getCommonPostCodeListCnt();
|
|
|
|
public boolean setCommonPostCodeRegProc(T_POSTCODE tPostCode);
|
|
}
|