| 1234567891011121314151617 |
- 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);
- }
|