UserLevelCMapper.java 370 B

1234567891011
  1. package com.gree.mall.manager.commonmapper;
  2. import com.gree.mall.manager.plus.entity.UserLevel;
  3. import org.apache.ibatis.annotations.Param;
  4. import org.mapstruct.Mapper;
  5. @Mapper
  6. public interface UserLevelCMapper {
  7. UserLevel existUserInUserLevel(@Param("companyName") String companyName, @Param("userId") String userId, @Param("userLevelId") String userLevelId);
  8. }