fix: checkstyle

This commit is contained in:
vran
2022-03-02 20:11:15 +08:00
parent 57fbdbbd22
commit dfeaac5292
9 changed files with 51 additions and 51 deletions

View File

@@ -12,13 +12,13 @@ import java.util.Optional;
import static com.databasir.dao.Tables.OAUTH_APP;
@Repository
public class OAuthAppDao extends BaseDao<OauthAppPojo> {
public class OauthAppDao extends BaseDao<OauthAppPojo> {
@Autowired
@Getter
private DSLContext dslContext;
public OAuthAppDao() {
public OauthAppDao() {
super(OAUTH_APP, OauthAppPojo.class);
}