Publish apes-Authon via gitea-publish skill
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package cn.apes.cloud.mapper;
|
||||
|
||||
import cn.apes.cloud.domain.entity.CustomerPackageQuota;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Delete;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface CustomerPackageQuotaMapper extends BaseMapper<CustomerPackageQuota> {
|
||||
|
||||
/**
|
||||
* 物理删除(不走逻辑删除)
|
||||
*/
|
||||
@Delete("DELETE FROM customer_package_quota WHERE customer_package_id = #{packageId}")
|
||||
int physicalDeleteByPackageId(Long packageId);
|
||||
}
|
||||
Reference in New Issue
Block a user