ShareLogMapper.java 400 Bytes
package com.example.mapper;

import org.apache.ibatis.annotations.Param;

import com.example.models.ShareLog;

/**
 * Created by JA on 17/7/17.
 */
public interface ShareLogMapper {

	boolean create(ShareLog shareLog);

	long countByDay(@Param("openid") String openid, @Param("startDate") String startDate,
			@Param("endDate") String endDate);

	boolean saveStat(@Param("openid") String openid);

}