dao

来源:互联网 发布:mui框架电商app源码 编辑:程序博客网 时间:2024/05/15 01:31
package cn.emay.emas.dao;


import java.util.List;


import cn.emay.emas.entity.Usr;


public interface UsrMapper {

    int deleteByPrimaryKey(Long id);


    int insert(Usr record);


    int insertSelective(Usr record);


    Usr selectByPrimaryKey(Long id);


    int updateByPrimaryKeySelective(Usr record);


    int updateByPrimaryKey(Usr record);
    
    List<Usr> findAll();
}
原创粉丝点击