mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-15 05:36:40 +00:00
31 lines
532 B
Java
31 lines
532 B
Java
package com.java2nb.novel.service;
|
|
|
|
import com.java2nb.novel.domain.UserFeedbackDO;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author xiongxy
|
|
* @email 1179705413@qq.com
|
|
* @date 2023-04-18 11:08:54
|
|
*/
|
|
public interface UserFeedbackService {
|
|
|
|
UserFeedbackDO get(Long id);
|
|
|
|
List<UserFeedbackDO> list(Map<String, Object> map);
|
|
|
|
int count(Map<String, Object> map);
|
|
|
|
int save(UserFeedbackDO userFeedback);
|
|
|
|
int update(UserFeedbackDO userFeedback);
|
|
|
|
int remove(Long id);
|
|
|
|
int batchRemove(Long[] ids);
|
|
}
|