EmployeeRoleMapper.java 311 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.mapper;
liqin's avatar
liqin committed
2 3

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
liqin's avatar
liqin committed
4
import cn.chnmuseum.party.model.EmployeeRole;
liqin's avatar
liqin committed
5 6 7 8 9 10 11 12 13 14 15 16

/**
 * <p>
 * 成员角色 Mapper 接口
 * </p>
 *
 * @author 杨智平
 * @since 2018-08-02
 */
public interface EmployeeRoleMapper extends BaseMapper<EmployeeRole> {

}