package com.product.org.admin.service.idel; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * @author: ZhouJie * @date: 2021/8/24 9:52 * @description: 员工档案 */ public interface IEmployeeFileService { boolean updateEmployee(FieldSetEntity fs) throws BaseException; String saveEmployeeSub(FieldSetEntity fs); boolean delEmployeeSub(FieldSetEntity fs); }