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.

25 lines
336 B

package com.demo.service;
import com.demo.pojo.ZiXun;
import java.util.List;
/**
* 资讯
*/
public interface ZiXunService extends CrudService<ZiXun> {
/**
* 资讯审核通过
* @param zid
*/
void shenhe(int zid);
/**
* 连带未审核的资讯
* @return
*/
List<ZiXun> list1();
}