|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.matrix.system.activity.entity.ActivitySignAwardSet; | 
|---|
|  |  |  | import com.matrix.system.shopXcx.api.vo.ActivitySignAwardSetVo; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @description 奖品设置表 | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface ActivitySignAwardSetDao extends BaseMapper<ActivitySignAwardSet>{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ActivitySignAwardSetVo> selectListByActIDAndCompanyId(@Param("actId")Long actId, @Param("companyId")Long companyId,@Param("awardState")int awardstateWork); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ActivitySignAwardSetVo> selectListByActIDAndCompanyIdAndAwardType(@Param("actId")Long actId, @Param("companyId")Long companyId | 
|---|
|  |  |  | ,@Param("awardState")int awardstateWork,@Param("awardRule")int awardRule); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ActivitySignAwardSet> selectActivitySignAwardSetByActIDAndCompanyIdAndAwardType(@Param("actId")Long actId, @Param("companyId")Long companyId | 
|---|
|  |  |  | ,@Param("awardState")int awardstateWork,@Param("awardRule")int awardRule); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|