|
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
import com.jeeplus.sys.service.dto.UserDTO;
|
|
|
import com.jeeplus.test.materialManagement.wareHouse.domain.WareHouseDetailed;
|
|
|
import com.jeeplus.test.workContract.service.dto.WorkAttachmentDto;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
@@ -41,4 +42,7 @@ public interface WareHouseDetailedMapper extends BaseMapper<WareHouseDetailed> {
|
|
|
|
|
|
// 根据入库id删除关联附件 物理删除
|
|
|
void deleteFilesByIdList(List<String> attachmentIdList);
|
|
|
+
|
|
|
+ // 根据商品名称修改
|
|
|
+ void saveTradeName(@Param("oldTradeName") String oldTradeName, @Param("tradeName") String tradeName);
|
|
|
}
|