You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
251 B
Java
18 lines
251 B
Java
5 years ago
|
package com.ann.demo.service;
|
||
|
|
||
|
import com.ann.demo.entity.normalEntity.User;
|
||
|
|
||
|
/**
|
||
|
* @Description
|
||
|
* @Date 2019/7/16 9:56
|
||
|
* @Created by ljx
|
||
|
*/
|
||
|
|
||
|
public interface UserService {
|
||
|
|
||
|
public void save(User user);
|
||
|
|
||
|
public void delete(User user);
|
||
|
|
||
|
}
|