SysDeptRelationMapper.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. *
  3. * Copyright (c) 2018-2025, hnqz All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * Redistributions of source code must retain the above copyright notice,
  9. * this list of conditions and the following disclaimer.
  10. * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * Neither the name of the pig4cloud.com developer nor the names of its
  14. * contributors may be used to endorse or promote products derived from
  15. * this software without specific prior written permission.
  16. * Author: hnqz
  17. *
  18. */
  19. package com.retdata.yaoyibi.mapper;
  20. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  21. import com.retdata.yaoyibi.domain.SysDeptRelation;
  22. import java.util.List;
  23. /**
  24. * <p>
  25. * Mapper 接口
  26. * </p>
  27. *
  28. * @author hnqz
  29. * @since 2018-02-12
  30. */
  31. public interface SysDeptRelationMapper extends BaseMapper<SysDeptRelation> {
  32. }