Created
July 1, 2014 08:56
-
-
Save masazdream/3e1f720bcd1e436df129 to your computer and use it in GitHub Desktop.
Beta Doma Table Dao
This file contains hidden or 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
| @Dao(config = AppConfig.class) | |
| public interface BetaDomaTableDao { | |
| /** | |
| * | |
| * @param beta_doma_id 必要事項:カラム名と一致 | |
| * @return | |
| */ | |
| @Select | |
| BetaDoma selectById(Integer beta_doma_id); | |
| @Update | |
| int update(BetaDoma betaDomaTable); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment