34 lines
930 B
Java
34 lines
930 B
Java
|
|
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 );
|
||
|
|
|
||
|
|
}
|