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

34 lines
930 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> {
LibraryModelPointVO saveOrEditTemplatePoint (LibraryModelPointDTO libraryModelPoint);
List<LibraryModelPointVO> selectByLibraryIds (List<Long> libraryIds);
/**
* 模特打点
* @param modelsDotDTO
* @return
*/
String modelsDot( ModelsDotDTO modelsDotDTO );
}