submit order

This commit is contained in:
2024-12-23 22:40:42 +08:00
parent 7bfbd10b9d
commit 79587613d8
9 changed files with 206 additions and 0 deletions

View File

@@ -24,4 +24,7 @@ public interface AddressBookMapper {
@Update("update sky_take_out.address_book set is_default = 1 where id = #{id}")
void updateDefault(Long id);
@Select("select * from sky_take_out.address_book where id = #{addressBookId}")
AddressBook getById(Long addressBookId);
}