package com.iailab.module.pms.production.wash.service; import com.iailab.framework.common.pojo.PageResult; import com.iailab.module.pms.production.wash.vo.WashPlanPageReqVO; import com.iailab.module.pms.production.wash.entity.WashPlanEntity; /** * @author DongYukun * @Description * @createTime 2024年12月03日 */ public interface WashPlanService { String create(WashPlanEntity createEntity); String update(WashPlanEntity createEntity); void delete(String id); WashPlanEntity getInfo(String id); PageResult getPage(WashPlanPageReqVO PageReqVO); }