All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cory.dao.UserRoleRelDao Maven / Gradle / Ivy

There is a newer version: 0.0.35
Show newest version
package com.cory.dao;

import com.cory.dao.BaseDao;
import com.cory.db.annotations.Dao;
import com.cory.db.annotations.Delete;
import com.cory.db.annotations.Param;
import com.cory.model.UserRoleRel;

/**
 * generated by CodeGenerator on 2017/5/10.
 */
@Dao(model = UserRoleRel.class)
public interface UserRoleRelDao extends BaseDao {

    @Delete(whereSql = "user_id = #{userId}")
    int deleteByUser(@Param("userId") Integer userId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy