package com.thhy.pm.modules.biz.draw.mapper; import com.thhy.pm.modules.biz.draw.entity.DrawType; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-04-25 09:38:38 */ @Component public interface DrawTypeMapper { DrawType queryById(Serializable drawTypeId); Integer queryVersionById(Serializable drawTypeId); List findList(DrawType drawtype); List findAll(); void insert(DrawType drawtype); void update(DrawType drawtype); void deletelogic(Serializable drawTypeId); void deleteById(Serializable drawTypeId); }