Files
aida_back/src/main/java/com/ai/da/service/LibraryModelPointService.java

37 lines
1011 B
Java
Raw Normal View History

2023-01-06 15:17:37 +08:00
package com.ai.da.service;
import com.ai.da.mapper.entity.LibraryModelPoint;
import com.ai.da.model.dto.DesignSingleDTO;
import com.ai.da.model.dto.LibraryModelPointDTO;
import com.ai.da.model.dto.ModelsDotDTO;
import com.ai.da.model.vo.LibraryModelPointVO;
import com.ai.da.model.vo.LibraryUpdateVo;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.List;
/**
* 服务类
*
* @author easy-generator
* @since 2022-11-11
*/
public interface LibraryModelPointService extends IService<LibraryModelPoint> {
2023-10-20 14:47:18 +08:00
LibraryModelPointVO saveOrEditTemplatePoint(LibraryModelPointDTO libraryModelPoint);
2023-01-06 15:17:37 +08:00
2023-10-20 14:47:18 +08:00
List<LibraryModelPointVO> selectByLibraryIds(List<Long> libraryIds);
2023-01-06 15:17:37 +08:00
/**
* 模特打点
2023-10-20 14:47:18 +08:00
*
2023-01-06 15:17:37 +08:00
* @param modelsDotDTO
* @return
*/
2023-10-20 14:47:18 +08:00
String modelsDot(ModelsDotDTO modelsDotDTO);
2023-01-06 15:17:37 +08:00
2023-10-20 14:47:18 +08:00
LibraryModelPoint getByRelationId(Long relationId, String modelType);
2023-10-04 19:14:42 +08:00
2023-01-06 15:17:37 +08:00
}