19 lines
368 B
Java
19 lines
368 B
Java
|
|
package com.rzyc.mapper;
|
||
|
|
|
||
|
|
import com.rzyc.model.EntDeviceMaintenancePlan;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import org.springframework.stereotype.Repository;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* Mapper 接口
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author
|
||
|
|
* @since 2022-10-21
|
||
|
|
*/
|
||
|
|
@Repository
|
||
|
|
public interface EntDeviceMaintenancePlanMapper extends BaseMapper<EntDeviceMaintenancePlan> {
|
||
|
|
|
||
|
|
}
|