package com.thhy.materials.modules.biz.pipeplanmonth.mapper; import com.thhy.materials.modules.biz.pipeplanmonth.entity.PipePlanMonth; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-04-18 09:10:58 */ @Component public interface PipePlanMonthMapper { PipePlanMonth queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(PipePlanMonth pipeplanmonth); List findAll(); void insert(PipePlanMonth pipeplanmonth); void update(PipePlanMonth pipeplanmonth); void deletelogic(Serializable id); void deleteById(Serializable id); void deleteByPlan(String pipePlanId); }