LpInfoStateMapper.java 412 B

1234567891011121314151617181920
  1. package com.zy.bms.mapper.lp;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.zy.bms.entity.lp.LpInfoState;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.springframework.stereotype.Repository;
  6. /**
  7. * <p>
  8. * 设备-路牌 Mapper 接口
  9. * </p>
  10. *
  11. * @author chenyi
  12. * @since 2021-06-22
  13. */
  14. @Mapper
  15. @Repository
  16. public interface LpInfoStateMapper extends BaseMapper<LpInfoState> {
  17. }