1234567891011121314151617181920 |
- package com.zy.bms.mapper.lp;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.zy.bms.entity.lp.LpInfoState;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Repository;
- /**
- * <p>
- * 设备-路牌 Mapper 接口
- * </p>
- *
- * @author chenyi
- * @since 2021-06-22
- */
- @Mapper
- @Repository
- public interface LpInfoStateMapper extends BaseMapper<LpInfoState> {
- }
|