MpAccountDinerRefServiceImpl.java 683 Bytes
package com.tianting.infoloop.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.tianting.infoloop.mapper.MpAccountDinerRefMapper;
import com.tianting.infoloop.model.db.MpAccountDinerRef;
import com.tianting.infoloop.service.MpAccountDinerRefService;
import org.springframework.stereotype.Service;

/**
* @author zhuyf
* @description 针对表【mp_account_diner_refs(小程序账号和就餐人关联表)】的数据库操作Service实现
* @createDate 2025-04-10 13:22:20
*/
@Service
public class MpAccountDinerRefServiceImpl extends ServiceImpl<MpAccountDinerRefMapper, MpAccountDinerRef>
    implements MpAccountDinerRefService{

}