| | |
| | | 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; |
| | | |
| | |
| | | * 查询审核计划 |
| | | * @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); |
| | | } |