StaffApartmentSpareKeyMapper.java 624 字节
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.StaffApartmentSpareKey;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface StaffApartmentSpareKeyMapper {
    int deleteByPrimaryKey(String id);

    int insert(StaffApartmentSpareKey record);

    int insertSelective(StaffApartmentSpareKey record);

    StaffApartmentSpareKey selectByPrimaryKey(String id);

    int updateByPrimaryKeySelective(StaffApartmentSpareKey record);

    int updateByPrimaryKey(StaffApartmentSpareKey record);

    List<StaffApartmentSpareKey> findAll(@Param("staffname") String staffname);
}