SysDeptService.java 406 字节
package com.tianbo.warehouse.service;

import com.tianbo.warehouse.model.SysDept;

import java.util.List;

/**
 * @author
 * @time 2019-12-18 11:22
 */
public interface SysDeptService {

    int deleteByPrimaryKey(Integer id);

    int insertSelective(SysDept sysDept);

    SysDept selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(SysDept sysDept);

    List<SysDept> findAllDept();
}