Files
aida_back/src/main/java/com/ai/da/service/DesignItemService.java
2024-01-19 16:36:34 +08:00

58 lines
1.5 KiB
Java

package com.ai.da.service;
import com.ai.da.mapper.primary.entity.DesignItem;
import com.ai.da.model.dto.DesignSingleDTO;
import com.ai.da.model.dto.DesignSingleIncludeLayersDTO;
import com.ai.da.model.vo.*;
import com.baomidou.mybatisplus.extension.service.IService;
import java.io.IOException;
import java.util.List;
/**
* 服务类
*
* @author yanglei
* @since 2022-09-11
*/
public interface DesignItemService extends IService<DesignItem> {
Long saveOne(DesignItem designItem);
int deleteByCollectionId(Long collectionId);
List<DesignItem> getByDesignId(Long designId);
void updateLikeStatus(Long designItemId, Byte hasLike);
void updateDesignHighUrl(Long designItemId, String highUrl, String timeZone);
/**
* 切换系统elemnt
*
* @param id
* @param type
*/
GetNextSysElementVO getNextSysElement(Long id, String type, String operateType);
/**
* 单个design
*
* @param designSingleDTO
*/
DesignCollectionItemVO designSingle(DesignSingleDTO designSingleDTO);
/**
* print打点
*
* @param designSingleDTO
*/
String printDot(DesignSingleDTO designSingleDTO);
DesignSingleVO designSingleIncludeLayers(DesignSingleIncludeLayersDTO designSingleIncludeLayersDTO);
ComposeLayersVO editLayersPositionAndScale(EditLayersPositionAndScaleVO positionAndScaleVO) throws IOException;
List<DesignItem> selectDesignIdById(List<Long> designItemIdList);
}