| | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.drew.metadata.Face; |
| | | import com.product.admin.service.PublicService; |
| | | import com.product.common.lang.StringUtils; |
| | | import com.product.core.config.CoreConst; |
| | | import com.product.core.entity.DataTableEntity; |
| | |
| | | import org.apache.logging.log4j.core.Core; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.io.File; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | |
| | | @Service |
| | | public class FaceDesignService extends AbstractBaseService implements IFaceDesignService { |
| | | |
| | | |
| | | @Resource |
| | | private PublicService publicService; |
| | | |
| | | /** |
| | | * 获取表单配置详情 |
| | |
| | | return fse; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 删除表单设计 |
| | | * |
| | | * @param fse |
| | | * @throws BaseException |
| | | */ |
| | | @Override |
| | | @Transactional |
| | | public void deleteFace(FieldSetEntity fse) throws BaseException { |
| | | publicService.delete(fse); |
| | | } |
| | | |
| | | |
| | | } |