审查视图

src/main/java/com/tianbo/warehouse/service/SysDeptService.java 406 字节
zhangFan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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();
}