| 123456789101112131415161718 |
- package com.zksy.data.mapper;
- import com.zksy.data.domain.po.XcrTaxpayerCreditRating;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- /**
- * @author 邵洋
- * @description 针对表【xcr_taxpayer_credit_rating(纳税人信用等级表)】的数据库操作Mapper
- * @createDate 2024-10-17 17:47:15
- * @Entity com.zksy.data.domain.po.XcrTaxpayerCreditRating
- */
- public interface XcrTaxpayerCreditRatingMapper extends BaseMapper<XcrTaxpayerCreditRating> {
- }
|