CompanySendStatusMapper.java 364 B

12345678910
  1. package com.simuwang.base.mapper.daq;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.simuwang.base.pojo.dos.CompanySendStatusDO;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface CompanySendStatusMapper extends BaseMapper<CompanySendStatusDO> {
  7. CompanySendStatusDO getCompanySendStatusByCompanyId(String companyId);
  8. }