IEmployeeService.java 300 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.service;
liqin's avatar
liqin committed
2 3

import com.baomidou.mybatisplus.extension.service.IService;
liqin's avatar
liqin committed
4
import cn.chnmuseum.party.model.Employee;
liqin's avatar
liqin committed
5 6 7 8 9 10 11 12 13 14 15 16

/**
 * <p>
 * 组织成员 服务类
 * </p>
 *
 * @author 杨智平
 * @since 2018-08-02
 */
public interface IEmployeeService extends IService<Employee> {

}