• This project
    • Loading...
  • Sign in

zyn / cjs-site

75981343286505
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • cjs-site
  • ..
  • pub
  • SendMessageLogDao.java
  • wangbeiyong's avatar
    init · 10fdb5aa
    10fdb5aa
    wangbeiyong authored 2019-01-24 11:45:00 +0800
SendMessageLogDao.java 371 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.cjs.site.dao.pub;

import java.util.Map;

import org.springframework.stereotype.Repository;

/**
 * 短信发送记录
 * 
 * @author tongyufu
 *
 */
@Repository
public interface SendMessageLogDao {

    void insertMegLog(Map<String, Object> params);

    /**查询指定号码当天发送短信次数*/
    int queryCountByPhoneNumber(String phoneNumber);
}