IHelloService.java 154 B

123456789
  1. package cn.hhj.service;
  2. import cn.hhj.vo.User;
  3. public interface IHelloService {
  4. String sayHello(Object content);
  5. String saveUser(User user);
  6. }