包头项目
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.
 
 
 
 
 

31 lines
701 B

package net.mingsoft.cms.biz;
import com.baomidou.mybatisplus.extension.service.IService;
import net.mingsoft.base.biz.IBaseBiz;
import net.mingsoft.cms.bean.IndexDataBean;
import net.mingsoft.cms.entity.IndexDataEntity;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author example
* @since 2023-11-14
*/
public interface IndexDataBiz extends IBaseBiz {
public int addIndexData(IndexDataEntity indexDataEntity);
public List<IndexDataEntity> queryIndexDataList(IndexDataBean indexDataBean);
public int updateIndexData(IndexDataEntity indexDataEntity);
public IndexDataEntity queryIndexDataEntityById(Long id);
public int deleteIndexDataById(Long id);
}