ADD file via upload

main
pjhmizn49 1 year ago
parent e6e900be10
commit 9f2ff516b7

@ -0,0 +1,20 @@
package com.example.flower.service;
import com.example.flower.mapper.ChatUserDao;
import com.example.flower.entity.Params;
import com.example.flower.entity.ChatUser;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.stereotype.Service;
import jakarta.annotation.Resource;
import java.util.List;
@Service
public class ChatUserService {
@Resource
private ChatUserDao chatUserDao;
public List<ChatUser> findAll() {
return chatUserDao.findAll();
}
}
Loading…
Cancel
Save