org.unlaxer.jaddress.dao.mysql.LevelDao Maven / Gradle / Ivy
package org.unlaxer.jaddress.dao.mysql;
import org.seasar.doma.Dao;
import org.seasar.doma.Insert;
import org.unlaxer.jaddress.dao.mysql.entity.Level;
@Dao(config = MysqlConfig.class)
public interface LevelDao {
@Insert(sqlFile = true)
int insertOrUpdate(int n, Level level);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy