ImgInfoMapper.java
281 Bytes
package com.example.mapper;
import com.example.models.ImgInfo;
import org.apache.ibatis.annotations.Param;
/**
* Created by JA on 17/7/17.
*/
public interface ImgInfoMapper {
boolean create(ImgInfo imgInfo);
ImgInfo getNewByOpenid(@Param("openid") String openid);
}