service

来源:互联网 发布:ubuntu应用商店慢 编辑:程序博客网 时间:2024/06/06 00:13
package cn.emay.emas.service;


import java.util.List;


import cn.emay.emas.entity.Usr;


public interface UsrService {

int insert(Usr record);
int deleteById(Long id);
int update(Usr record);
Usr selectById(Long id);
List<Usr> selectAll();

}