|
|
@ -5,6 +5,7 @@ import java.util.List; |
|
|
|
|
|
|
|
import com.jianwei.common.core.controller.BaseController; |
|
|
|
import com.jianwei.common.core.domain.SearchParam; |
|
|
|
import com.jianwei.common.utils.FastDfsUtil; |
|
|
|
import com.jianwei.common.utils.poi.ExcelUtil; |
|
|
|
import com.kms.common.utils.BaseEntityUtils; |
|
|
|
|
|
|
@ -12,14 +13,7 @@ import com.kms.common.utils.BaseEntityUtils; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.PutMapping; |
|
|
|
import org.springframework.web.bind.annotation.DeleteMapping; |
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.jianwei.common.mybaitsplus.BeanToWrapper; |
|
|
@ -29,6 +23,7 @@ import com.jianwei.common.core.domain.AjaxResult; |
|
|
|
import com.jianwei.common.enums.BusinessType; |
|
|
|
import com.kms.earlyStage.domain.SpecialProjectDocument; |
|
|
|
import com.kms.earlyStage.service.SpecialProjectDocumentService; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -45,6 +40,9 @@ public class SpecialProjectDocumentController extends BaseController |
|
|
|
@Autowired |
|
|
|
private SpecialProjectDocumentService specialProjectDocumentService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private FastDfsUtil fastdfs; |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询专题项目文档管理列表 |
|
|
|
*/ |
|
|
@ -111,4 +109,5 @@ public class SpecialProjectDocumentController extends BaseController |
|
|
|
{ |
|
|
|
return toAjax(specialProjectDocumentService.removeByIds(Arrays.asList(ids))); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|