This repository has been archived by the owner on Dec 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
1 parent
aa52d21
commit f152a6b
Showing
14 changed files
with
1,528 additions
and
58 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
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,32 @@ | ||
package com.crossoverJie.dao; | ||
|
||
import com.crossoverJie.pojo.ContentLog; | ||
import com.crossoverJie.pojo.ContentLogExample; | ||
|
||
import java.util.List; | ||
|
||
import org.apache.ibatis.annotations.Param; | ||
|
||
public interface ContentLogMapper { | ||
int countByExample(ContentLogExample example); | ||
|
||
int deleteByExample(ContentLogExample example); | ||
|
||
int deleteByPrimaryKey(Integer logId); | ||
|
||
int insert(ContentLog record); | ||
|
||
int insertSelective(ContentLog record); | ||
|
||
List<ContentLog> selectByExample(ContentLogExample example); | ||
|
||
ContentLog selectByPrimaryKey(Integer logId); | ||
|
||
int updateByExampleSelective(@Param("record") ContentLog record, @Param("example") ContentLogExample example); | ||
|
||
int updateByExample(@Param("record") ContentLog record, @Param("example") ContentLogExample example); | ||
|
||
int updateByPrimaryKeySelective(ContentLog record); | ||
|
||
int updateByPrimaryKey(ContentLog record); | ||
} |
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,32 @@ | ||
package com.crossoverJie.dao; | ||
|
||
import com.crossoverJie.pojo.Content; | ||
import com.crossoverJie.pojo.ContentExample; | ||
|
||
import java.util.List; | ||
|
||
import org.apache.ibatis.annotations.Param; | ||
|
||
public interface ContentMapper { | ||
int countByExample(ContentExample example); | ||
|
||
int deleteByExample(ContentExample example); | ||
|
||
int deleteByPrimaryKey(Integer contentid); | ||
|
||
int insert(Content record); | ||
|
||
int insertSelective(Content record); | ||
|
||
List<Content> selectByExample(ContentExample example); | ||
|
||
Content selectByPrimaryKey(Integer contentid); | ||
|
||
int updateByExampleSelective(@Param("record") Content record, @Param("example") ContentExample example); | ||
|
||
int updateByExample(@Param("record") Content record, @Param("example") ContentExample example); | ||
|
||
int updateByPrimaryKeySelective(Content record); | ||
|
||
int updateByPrimaryKey(Content record); | ||
} |
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
Oops, something went wrong.