SysDeptMapper.java
491 字节
package com.tianbo.warehouse.dao;
import com.tianbo.warehouse.model.SysDept;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public interface SysDeptMapper {
int deleteByPrimaryKey(Integer id);
int insert(SysDept record);
int insertSelective(SysDept record);
SysDept selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(SysDept record);
int updateByPrimaryKey(SysDept record);
List<SysDept> findAllDept();
}