package com.thhy.secure.modules.biz.notice.mapper;
|
|
import com.thhy.secure.modules.biz.notice.entity.NoticeDto;
|
import com.thhy.secure.modules.biz.notice.entity.NoticeListVo;
|
import com.thhy.secure.modules.biz.notice.entity.SecureNotice;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-05-23 11:23:37
|
*/
|
@Component
|
public interface SecureNoticeMapper {
|
|
|
SecureNotice queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<NoticeListVo> findList(NoticeDto noticeDto);
|
|
List<SecureNotice> findAll();
|
|
void insert(SecureNotice securenotice);
|
|
void update(SecureNotice securenotice);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
void updown(SecureNotice securenotice);
|
}
|