package com.gree.mall.manager.commonmapper; import com.gree.mall.manager.plus.entity.UserLevel; import org.apache.ibatis.annotations.Param; import org.mapstruct.Mapper; @Mapper public interface UserLevelCMapper { UserLevel existUserInUserLevel(@Param("companyName") String companyName, @Param("userId") String userId, @Param("userLevelId") String userLevelId); }