package cn.apes.authon.mapper; import cn.apes.authon.domain.entity.SysPackagePlanQuota; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; @Mapper public interface SysPackagePlanQuotaMapper extends BaseMapper { @org.apache.ibatis.annotations.Delete("DELETE FROM sys_package_plan_quota WHERE plan_id = #{planId}") int physicalDeleteByPlanId(Long planId); }