| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | |
| | | @Select("update com_shop_store set sys_user_id = #{sysUserId} where phone = #{phone}") |
| | | void updateStoreByPhone(@Param("phone")String phone, @Param("sysUserId")Long sysUserId); |
| | | |
| | | @Select("delete from com_shop_store where delete_status = 1 and phone = #{phone}") |
| | | void deleteStoreByPhoneAndStatus(@RequestParam("phone") String phone); |
| | | } |