package com.product.administration.service.ide; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; public interface ICustomerInfoService { /** * 客户新增 * @param fse * @return * @throws BaseException */ boolean addCustomerInfo(FieldSetEntity fse)throws BaseException; /** * 客户修改 * @param fse * @return * @throws BaseException */ boolean updateCustomerInfo(FieldSetEntity fse)throws BaseException; /** * 客户删除 * @param uuid * @return * @throws BaseException */ boolean deleteCustomerInfo(String uuid) throws BaseException; }