13 lines
327 B
Java
13 lines
327 B
Java
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);
|
|
|
|
void updateById(PushRecords pushRecords);
|
|
}
|