BUGFIX: format;

This commit is contained in:
shahaibo
2023-10-20 14:47:18 +08:00
parent f18c27fe02
commit 9fa605f83e
134 changed files with 1345 additions and 1203 deletions

View File

@@ -31,6 +31,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
void delete(Long id);
/**
* 删除元素图片
*
@@ -38,6 +39,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
void batchDelete(List<Long> ids);
/**
* 生产印花图片
*
@@ -45,6 +47,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
CollectionGeneratePrintVO generatePrint(CollectionGeneratePrintDTO generatePrintDTO);
/**
* 保存印花图片
*
@@ -52,14 +55,17 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
Boolean savePrint(CollectionSavePrintDTO savePrintDTO);
/**
* 通过element保存library
*
* @param elements
* @return
*/
Boolean saveLibraryByCollectionElement(List<CollectionElement> elements,String timeZone);
Boolean saveLibraryByCollectionElement(List<CollectionElement> elements,String timeZone, String modelSex);
Boolean saveLibraryByCollectionElement(List<CollectionElement> elements, String timeZone);
Boolean saveLibraryByCollectionElement(List<CollectionElement> elements, String timeZone, String modelSex);
/**
* 校验element
*
@@ -67,6 +73,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
ValidateElementVO validateElement(DesignCollectionDTO designDTO);
/**
* 编辑
*
@@ -74,6 +81,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
void editSketchBoardsElement(ValidateElementVO elementVO, List<CollectionSketchDTO> sketchBoards);
/**
* 编辑
*
@@ -81,6 +89,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @return
*/
void editPrintBoardsElement(ValidateElementVO elementVO, List<DesignCollectionPrintElementDTO> printBoards);
/**
* 关联element和collection
*
@@ -88,7 +97,7 @@ public interface CollectionElementService extends IService<CollectionElement> {
* @param collectionId
* @return
*/
void relationCollection(List<Long> elementIds,Long collectionId);
void relationCollection(List<Long> elementIds, Long collectionId);
/**
* 保存颜色板
@@ -107,22 +116,24 @@ public interface CollectionElementService extends IService<CollectionElement> {
*/
List<CollectionElement> getByCollectionId(Long collectionId);
List<CollectionElement> getByOnlyCollectionId(Long collectionId);
List<CollectionElement> getByOnlyCollectionId(Long collectionId);
DesignLibraryModelPointVO calculateTemplatePoint(LibraryModelPoint modelPoint, Integer high, Integer width, String templateUrl);
DesignLibraryModelPointVO calculateTemplatePointTemplate(LibraryModelPoint modelPoint, Integer high, Integer width, String templateUrl);
/**
* 刷新历史数据
*/
void refreshHistoryData() ;
void refreshHistoryData();
/**
* 当level2Type发生改变时修改levelType
*
* @param elementId
* @param level2Type
* @return
*/
CollectionElement editLevel2Type(Long elementId,String level2Type);
CollectionElement editLevel2Type(Long elementId, String level2Type);
}