2024-10-19 17:34:40 +08:00
|
|
|
package com.zcloud.mapper.datasource.messages;
|
|
|
|
|
|
|
|
import com.zcloud.entity.messages.PushRecords;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
public interface MessagesMapper {
|
|
|
|
void install(PushRecords pushRecords);
|
|
|
|
|
|
|
|
String findUserIdByPhone(@Param("phone") String phone);
|
2024-10-21 18:26:02 +08:00
|
|
|
|
|
|
|
void updateById(PushRecords pushRecords);
|
2024-10-19 17:34:40 +08:00
|
|
|
}
|