You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
489 B
Java
19 lines
489 B
Java
2 years ago
|
package com.glxp.api.dao.dev;
|
||
|
|
||
|
import com.glxp.api.entity.dev.DeviceRepairApplyDetailEntity;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【device_repair_apply_detail(设备报修单明细)】的数据库操作Mapper
|
||
|
* @createDate 2023-12-07 17:15:49
|
||
|
* @Entity com.glxp.api.entity.dev.DeviceRepairApplyDetailEntity
|
||
|
*/
|
||
|
public interface DeviceRepairApplyDetailMapper extends BaseMapper<DeviceRepairApplyDetailEntity> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|