15 lines
360 B
Java
15 lines
360 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.MaintainService;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 维修养护
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-08-27 15:15:14
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface MaintainServiceMapper extends BaseMapper<MaintainService> {
|
||
|
|
|
||
|
|
}
|