| | |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.domain.entity.ProjectInfo; |
| | | import com.ycl.domain.form.DocumentInfoForm; |
| | | import com.ycl.domain.form.ProjectForm; |
| | | import com.ycl.domain.form.ProjectInfoForm; |
| | | import com.ycl.domain.query.ProjectExportQuery; |
| | | import com.ycl.domain.query.ProjectInfoQuery; |
| | | import com.ycl.domain.vo.IndexCountVO; |
| | | import com.ycl.domain.vo.IndexDTO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | |
| | | void export(HttpServletResponse response, ProjectExportQuery query) throws IOException; |
| | | |
| | | Result updateUsedStatus(Integer id, Integer usedStatus); |
| | | |
| | | void importProject(MultipartFile file); |
| | | |
| | | Result editProject(ProjectForm form); |
| | | |
| | | Result searchByKey(String wordKey); |
| | | } |