c3aa3476c9e5e3394ed879f1808084125ae7afb0.svn-base 406 B

12345678910111213141516171819
  1. package org.jeecg.modules.system.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import org.jeecg.modules.system.entity.SysPosition;
  4. /**
  5. * @Description: 职务表
  6. * @Author: jeecg-boot
  7. * @Date: 2019-09-19
  8. * @Version: V1.0
  9. */
  10. public interface ISysPositionService extends IService<SysPosition> {
  11. /**
  12. * 通过code查询
  13. */
  14. SysPosition getByCode(String code);
  15. }