EmployeeRoleServiceImpl.java 553 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.service.impl;
liqin's avatar
liqin committed
2

liqin's avatar
liqin committed
3
import cn.chnmuseum.party.service.IEmployeeRoleService;
liqin's avatar
liqin committed
4
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
liqin's avatar
liqin committed
5 6
import cn.chnmuseum.party.mapper.EmployeeRoleMapper;
import cn.chnmuseum.party.model.EmployeeRole;
liqin's avatar
liqin committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20
import org.springframework.stereotype.Service;

/**
 * <p>
 * 成员角色表 服务实现类
 * </p>
 *
 * @author 杨智平
 * @since 2018-08-02
 */
@Service
public class EmployeeRoleServiceImpl extends ServiceImpl<EmployeeRoleMapper, EmployeeRole> implements IEmployeeRoleService {

}