You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
451 B
19 lines
451 B
package jnpf.mapper; |
|
|
|
import jnpf.entity.LotteryReview; |
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import jnpf.model.dto.LotteryProjectDto; |
|
import org.apache.ibatis.annotations.Param; |
|
|
|
/** |
|
* <p> |
|
* 评审次数 Mapper 接口 |
|
* </p> |
|
* |
|
* @author admin |
|
* @since 2024-08-30 |
|
*/ |
|
public interface LotteryReviewMapper extends BaseMapper<LotteryReview> { |
|
|
|
LotteryProjectDto.QueryReviewResponse queryReviewInfo(@Param("id") String id); |
|
}
|
|
|