/** * @Date: 2020年6月28日 下午8:27:32 * @Author: ZhengMeng * @Description: */ package com.product.org.admin.service.idel; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * Copyright LX-BASE * @Title: * @Project: LX-BASE-SERVER * @Date: 2020年6月28日 下午8:27:32 * @Author: 郑盟 * @Description: */ public interface ICompanyLanguageTimeZoneService { String addLanguageTimeZone(FieldSetEntity fse) throws BaseException; boolean updateLanguageTimeZone(FieldSetEntity fse) throws BaseException; boolean delectLanguageTimeZone(FieldSetEntity fse) throws BaseException; }