ChannelMapper.java 293 B

12345678910111213
  1. package com.qs.mp.channel.mapper;
  2. import com.qs.mp.channel.domain.Channel;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * @auther quanshu
  6. * @create 2022-03-02 12:22:24
  7. * @describe 渠道经销商mapper类
  8. */
  9. public interface ChannelMapper extends BaseMapper<Channel> {
  10. }