-
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
4 changed files
with
43 additions
and
6 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 |
---|---|---|
@@ -1,17 +1,21 @@ | ||
package demo.dao; | ||
|
||
import java.util.List; | ||
|
||
import demo.model.Node; | ||
|
||
public interface NodeMapper { | ||
int deleteByPrimaryKey(Integer id); | ||
int deleteByPrimaryKey(Integer id); | ||
|
||
int insert(Node record); | ||
|
||
int insert(Node record); | ||
int insertSelective(Node record); | ||
|
||
int insertSelective(Node record); | ||
Node selectByPrimaryKey(Integer id); | ||
|
||
Node selectByPrimaryKey(Integer id); | ||
List<Node> selectPage(Integer start, Integer end); | ||
|
||
int updateByPrimaryKeySelective(Node record); | ||
int updateByPrimaryKeySelective(Node record); | ||
|
||
int updateByPrimaryKey(Node record); | ||
int updateByPrimaryKey(Node 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
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