package com.goafanti.common.dao; import com.goafanti.common.model.Role; public interface RoleMapper { int deleteByPrimaryKey(String id); int insert(Role record); int insertSelective(Role record); Role selectByPrimaryKey(String id); int updateByPrimaryKeySelective(Role record); int updateByPrimaryKey(Role record); }