“zhuo”
2023-08-11 e72b3ab95aace19535fe596897822f0e334de5d6
cnas-server/src/main/java/com/yuanchu/limslaboratory/service/CnasAnnualPlanService.java
@@ -5,6 +5,7 @@
import com.yuanchu.limslaboratory.pojo.CnasAnnualPlan;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.limslaboratory.pojo.vo.CnasAnnualPlanVo;
import org.springframework.web.multipart.MultipartFile;
import java.util.Date;
@@ -22,5 +23,16 @@
     * 查询审核计划
     * @return
     */
    IPage<CnasAnnualPlanVo> selectAllList(Page<Object> objectPage, Date beginTime, Date endTime);
    IPage<CnasAnnualPlanVo> selectAllList(Page<Object> objectPage, Date planTime);
    /**
     * 上传附件
     */
    void addAccessory(String name, Date auditTime, MultipartFile file);
    /**
     * 删除年度计划
     * @return
     */
    Integer deleteCnasAnnualPlan(Integer planId);
}