forked from micyo202/yan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
4,105 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# yan-api |
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
98 changes: 98 additions & 0 deletions
98
yan-api/src/main/java/com/yan/api/mapper/logging/LoggingEventExceptionMapper.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,98 @@ | ||
package com.yan.api.mapper.logging; | ||
|
||
import com.yan.model.logging.LoggingEventException; | ||
import com.yan.model.logging.LoggingEventExceptionExample; | ||
import com.yan.model.logging.LoggingEventExceptionKey; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface LoggingEventExceptionMapper { | ||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
long countByExample(LoggingEventExceptionExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int deleteByExample(LoggingEventExceptionExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int deleteByPrimaryKey(LoggingEventExceptionKey key); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int insert(LoggingEventException record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int insertSelective(LoggingEventException record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
List<LoggingEventException> selectByExample(LoggingEventExceptionExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
LoggingEventException selectByPrimaryKey(LoggingEventExceptionKey key); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int updateByExampleSelective(@Param("record") LoggingEventException record, @Param("example") LoggingEventExceptionExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int updateByExample(@Param("record") LoggingEventException record, @Param("example") LoggingEventExceptionExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int updateByPrimaryKeySelective(LoggingEventException record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_exception | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:57 CST 2017 | ||
*/ | ||
int updateByPrimaryKey(LoggingEventException record); | ||
} |
121 changes: 121 additions & 0 deletions
121
yan-api/src/main/java/com/yan/api/mapper/logging/LoggingEventMapper.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,121 @@ | ||
package com.yan.api.mapper.logging; | ||
|
||
import com.yan.model.logging.LoggingEvent; | ||
import com.yan.model.logging.LoggingEventExample; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface LoggingEventMapper { | ||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
long countByExample(LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int deleteByExample(LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int deleteByPrimaryKey(Long eventId); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int insert(LoggingEvent record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int insertSelective(LoggingEvent record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
List<LoggingEvent> selectByExampleWithBLOBs(LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
List<LoggingEvent> selectByExample(LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
LoggingEvent selectByPrimaryKey(Long eventId); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByExampleSelective(@Param("record") LoggingEvent record, @Param("example") LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByExampleWithBLOBs(@Param("record") LoggingEvent record, @Param("example") LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByExample(@Param("record") LoggingEvent record, @Param("example") LoggingEventExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByPrimaryKeySelective(LoggingEvent record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByPrimaryKeyWithBLOBs(LoggingEvent record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event | ||
* | ||
* @mbg.generated Wed Sep 13 14:33:21 CST 2017 | ||
*/ | ||
int updateByPrimaryKey(LoggingEvent record); | ||
} |
114 changes: 114 additions & 0 deletions
114
yan-api/src/main/java/com/yan/api/mapper/logging/LoggingEventPropertyMapper.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,114 @@ | ||
package com.yan.api.mapper.logging; | ||
|
||
import com.yan.model.logging.LoggingEventProperty; | ||
import com.yan.model.logging.LoggingEventPropertyExample; | ||
import com.yan.model.logging.LoggingEventPropertyKey; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import java.util.List; | ||
|
||
public interface LoggingEventPropertyMapper { | ||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
long countByExample(LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int deleteByExample(LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int deleteByPrimaryKey(LoggingEventPropertyKey key); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int insert(LoggingEventProperty record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int insertSelective(LoggingEventProperty record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
List<LoggingEventProperty> selectByExampleWithBLOBs(LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
List<LoggingEventProperty> selectByExample(LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
LoggingEventProperty selectByPrimaryKey(LoggingEventPropertyKey key); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int updateByExampleSelective(@Param("record") LoggingEventProperty record, @Param("example") LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int updateByExampleWithBLOBs(@Param("record") LoggingEventProperty record, @Param("example") LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int updateByExample(@Param("record") LoggingEventProperty record, @Param("example") LoggingEventPropertyExample example); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int updateByPrimaryKeySelective(LoggingEventProperty record); | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. | ||
* This method corresponds to the database table logging_event_property | ||
* | ||
* @mbg.generated Fri Sep 15 16:14:13 CST 2017 | ||
*/ | ||
int updateByPrimaryKeyWithBLOBs(LoggingEventProperty record); | ||
} |
Oops, something went wrong.