This commit is contained in:
张良(004796)
2024-01-03 14:50:25 +08:00
parent fdc6dfc477
commit 1641b5f871
6 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.cai.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.cai.domain.MemberPrice;
/**
* 会员价格Mapper接口
*
* @author 77
* @date 2024-01-03
*/
public interface MemberPriceMapper extends BaseMapper<MemberPrice> {
}