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.
18 lines
397 B
18 lines
397 B
package com.zh.project0512.service;
|
|
|
|
import com.zh.project0512.model.TopicActivity;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* <p>
|
|
* 服务类
|
|
* </p>
|
|
*
|
|
* @author zh
|
|
* @since 2022-05-26
|
|
*/
|
|
public interface ITopicActivityService extends IService<TopicActivity> {
|
|
void updSortWeightPlus();
|
|
void updSort(int origin, int current, boolean originHigherCurrent);
|
|
}
|