- package com.simuwang.base.mapper.daq;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.simuwang.base.pojo.dos.CompanySendStatusDO;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface CompanySendStatusMapper extends BaseMapper<CompanySendStatusDO> {
- CompanySendStatusDO getCompanySendStatusByCompanyId(String companyId);
- }
|