-
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
12 changed files
with
859 additions
and
6 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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,74 @@ | ||
package com.zfgc.zfgbb.dbo; | ||
|
||
public class ChildBoardViewDbo { | ||
|
||
/** | ||
* This field was generated by MyBatis Generator. This field corresponds to the database column zfgbb.child_board_view.board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
private Integer boardId; | ||
/** | ||
* This field was generated by MyBatis Generator. This field corresponds to the database column zfgbb.child_board_view.board_name | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
private String boardName; | ||
/** | ||
* This field was generated by MyBatis Generator. This field corresponds to the database column zfgbb.child_board_view.parent_board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
private Integer parentBoardId; | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method returns the value of the database column zfgbb.child_board_view.board_id | ||
* @return the value of zfgbb.child_board_view.board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public Integer getBoardId() { | ||
return boardId; | ||
} | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method sets the value of the database column zfgbb.child_board_view.board_id | ||
* @param boardId the value for zfgbb.child_board_view.board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public void setBoardId(Integer boardId) { | ||
this.boardId = boardId; | ||
} | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method returns the value of the database column zfgbb.child_board_view.board_name | ||
* @return the value of zfgbb.child_board_view.board_name | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public String getBoardName() { | ||
return boardName; | ||
} | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method sets the value of the database column zfgbb.child_board_view.board_name | ||
* @param boardName the value for zfgbb.child_board_view.board_name | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public void setBoardName(String boardName) { | ||
this.boardName = boardName; | ||
} | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method returns the value of the database column zfgbb.child_board_view.parent_board_id | ||
* @return the value of zfgbb.child_board_view.parent_board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public Integer getParentBoardId() { | ||
return parentBoardId; | ||
} | ||
|
||
/** | ||
* This method was generated by MyBatis Generator. This method sets the value of the database column zfgbb.child_board_view.parent_board_id | ||
* @param parentBoardId the value for zfgbb.child_board_view.parent_board_id | ||
* @mbg.generated Mon Oct 14 23:44:38 EDT 2024 | ||
*/ | ||
public void setParentBoardId(Integer parentBoardId) { | ||
this.parentBoardId = parentBoardId; | ||
} | ||
} |
Oops, something went wrong.