Blame | Last modification | View Log | RSS feed
package in.shop2020.user.persistence;import java.util.List;import org.apache.ibatis.annotations.Param;import in.shop2020.user.domain.Address;public interface AddressMapper {void addAddressForUser(Address dbAddress);Address getAddress(long addressId);void disableAddress(long addressId);List<in.shop2020.user.domain.Address> getAllAddressesForUser(long userId);String getPincodeForAddress(long id);}