| package com.zt.core.oss.service; | 
|   | 
| import com.zt.common.entity.BaseEntity; | 
| import com.zt.core.oss.dto.OssDto; | 
|   | 
| import java.util.List; | 
|   | 
| public interface ISysOssService { | 
|   | 
|     List<OssDto> getOsses(Long busiId, String busiType, String busiField); | 
|   | 
|     void setOssField(BaseEntity entity); | 
|   | 
|   | 
|     void updateBusiInfo(BaseEntity entity); | 
|   | 
|     void updateBusiInfo(Long busiId, String busiType, String busiTypeName, String busiField, String busiFieldName, | 
|             List<Long> ids, Boolean deleteListNotExists ); | 
|   | 
|     void deleteBusiInfo(String busiType, Long busiId); | 
|   | 
|     void deleteBusiInfo(Long busiId, String busiType, String busiField); | 
|   | 
| } |