package com.product.org.admin.service.idel;
|
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
/**
|
*
|
* Copyright LX-BASE
|
* @Title: ICompanyPropertyService
|
* @Project: LX-BASE-SERVER
|
* @Date: 2020年11月13日 上午11:59:38
|
* @Author:
|
* @Description:公司属性
|
*/
|
public interface ICompanyPropertyService {
|
|
/**
|
* 公司属性修改
|
* @param fse
|
* @return
|
* @throws BaseException
|
*/
|
boolean updateCompanyProperty(FieldSetEntity fse) throws BaseException;
|
|
}
|