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.
|
package jnpf.service; |
|
|
|
import jnpf.entity.LotteryReview; |
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
|
|
/** |
|
* <p> |
|
* 评审次数 服务类 |
|
* </p> |
|
* |
|
* @author admin |
|
* @since 2024-08-30 |
|
*/ |
|
public interface ILotteryReviewService extends IService<LotteryReview> { |
|
|
|
}
|
|
|