-
Notifications
You must be signed in to change notification settings - Fork 996
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from rememberber/develop
3.0
- Loading branch information
Showing
147 changed files
with
11,010 additions
and
5,582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
/** | ||
* <pre> | ||
* 初始化数据库 | ||
* </pre> | ||
* | ||
* @author <a href="https://github.com/rememberber">RememBerBer</a> | ||
* @since 2019/5/9. | ||
*/ | ||
public interface InitMapper { | ||
/** | ||
* 初始化创建所有表 | ||
* | ||
* @return | ||
*/ | ||
int createAllTables(); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/com/fangxuele/tool/push/dao/TMsgKefuMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TMsgKefu; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TMsgKefuMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TMsgKefu record); | ||
|
||
int insertSelective(TMsgKefu record); | ||
|
||
TMsgKefu selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TMsgKefu record); | ||
|
||
int updateByPrimaryKey(TMsgKefu record); | ||
|
||
List<TMsgKefu> selectByMsgTypeAndMsgName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
|
||
int updateByMsgTypeAndMsgName(TMsgKefu tMsgKefu); | ||
|
||
List<TMsgKefu> selectByMsgType(int msgType); | ||
|
||
int deleteByMsgTypeAndName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/com/fangxuele/tool/push/dao/TMsgKefuPriorityMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TMsgKefuPriority; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TMsgKefuPriorityMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TMsgKefuPriority record); | ||
|
||
int insertSelective(TMsgKefuPriority record); | ||
|
||
TMsgKefuPriority selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TMsgKefuPriority record); | ||
|
||
int updateByPrimaryKey(TMsgKefuPriority record); | ||
|
||
List<TMsgKefuPriority> selectByMsgTypeAndMsgName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
|
||
int updateByMsgTypeAndMsgName(TMsgKefuPriority tMsgKefuPriority); | ||
|
||
List<TMsgKefuPriority> selectByMsgType(int msgType); | ||
|
||
int deleteByMsgTypeAndName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/com/fangxuele/tool/push/dao/TMsgMaTemplateMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TMsgMaTemplate; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TMsgMaTemplateMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TMsgMaTemplate record); | ||
|
||
int insertSelective(TMsgMaTemplate record); | ||
|
||
TMsgMaTemplate selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TMsgMaTemplate record); | ||
|
||
int updateByPrimaryKey(TMsgMaTemplate record); | ||
|
||
List<TMsgMaTemplate> selectByMsgTypeAndMsgName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
|
||
int updateByMsgTypeAndMsgName(TMsgMaTemplate tMsgMaTemplate); | ||
|
||
List<TMsgMaTemplate> selectByMsgType(int msgType); | ||
|
||
int deleteByMsgTypeAndName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/com/fangxuele/tool/push/dao/TMsgMpTemplateMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TMsgMpTemplate; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TMsgMpTemplateMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TMsgMpTemplate record); | ||
|
||
int insertSelective(TMsgMpTemplate record); | ||
|
||
TMsgMpTemplate selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TMsgMpTemplate record); | ||
|
||
int updateByPrimaryKey(TMsgMpTemplate record); | ||
|
||
List<TMsgMpTemplate> selectByMsgTypeAndMsgName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
|
||
int updateByMsgTypeAndMsgName(TMsgMpTemplate tMsgMpTemplate); | ||
|
||
List<TMsgMpTemplate> selectByMsgType(int msgType); | ||
|
||
int deleteByMsgTypeAndName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/com/fangxuele/tool/push/dao/TMsgSmsMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TMsgSms; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TMsgSmsMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TMsgSms record); | ||
|
||
int insertSelective(TMsgSms record); | ||
|
||
TMsgSms selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TMsgSms record); | ||
|
||
int updateByPrimaryKey(TMsgSms record); | ||
|
||
List<TMsgSms> selectByMsgTypeAndMsgName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
|
||
int updateByMsgTypeAndMsgName(TMsgSms tMsgSms); | ||
|
||
List<TMsgSms> selectByMsgType(int msgType); | ||
|
||
int deleteByMsgTypeAndName(@Param("msgType") int msgType, @Param("msgName") String msgName); | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/com/fangxuele/tool/push/dao/TPushHistoryMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TPushHistory; | ||
|
||
import java.util.List; | ||
|
||
public interface TPushHistoryMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TPushHistory record); | ||
|
||
int insertSelective(TPushHistory record); | ||
|
||
TPushHistory selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TPushHistory record); | ||
|
||
int updateByPrimaryKey(TPushHistory record); | ||
|
||
List<TPushHistory> selectByMsgType(int msgType); | ||
} |
24 changes: 24 additions & 0 deletions
24
src/main/java/com/fangxuele/tool/push/dao/TTemplateDataMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TTemplateData; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface TTemplateDataMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(TTemplateData record); | ||
|
||
int insertSelective(TTemplateData record); | ||
|
||
TTemplateData selectByPrimaryKey(Integer id); | ||
|
||
int updateByPrimaryKeySelective(TTemplateData record); | ||
|
||
int updateByPrimaryKey(TTemplateData record); | ||
|
||
List<TTemplateData> selectByMsgTypeAndMsgId(@Param("msgType") int msgType, @Param("msgId") int msgId); | ||
|
||
int deleteByMsgTypeAndMsgId(@Param("msgType") int msgType, @Param("msgId") int msgId); | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/fangxuele/tool/push/dao/TWxMpUserMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.fangxuele.tool.push.dao; | ||
|
||
import com.fangxuele.tool.push.domain.TWxMpUser; | ||
|
||
public interface TWxMpUserMapper { | ||
int deleteByPrimaryKey(String openId); | ||
|
||
int insert(TWxMpUser record); | ||
|
||
int insertSelective(TWxMpUser record); | ||
|
||
TWxMpUser selectByPrimaryKey(String openId); | ||
|
||
int updateByPrimaryKeySelective(TWxMpUser record); | ||
|
||
int updateByPrimaryKey(TWxMpUser record); | ||
|
||
int deleteAll(); | ||
} |
Oops, something went wrong.