You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
319 B
11 lines
319 B
package com.spring.modules.part.service;
|
|
|
|
import com.spring.modules.part.dto.ManufacturingStructuresBatchSaveDto;
|
|
|
|
/**
|
|
* 制造结构维护(查询复用 completeWhereUsed,保存为批量封装)
|
|
*/
|
|
public interface ManufacturingStructuresService {
|
|
|
|
void batchSave(ManufacturingStructuresBatchSaveDto dto);
|
|
}
|