1234567891011121314151617181920212223 |
- package com.fdkankan.manage.service;
- import com.fdkankan.manage.common.PageInfo;
- import com.fdkankan.manage.entity.EmployNote;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fdkankan.manage.vo.request.EmployNoteParam;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2022-06-30
- */
- public interface IEmployNoteService extends IService<EmployNote> {
- PageInfo pageList(EmployNoteParam param);
- void isPush(Integer isPush, Long id);
- void isTop(Integer isTop, Long id);
- }
|