17 lines
443 B
Java
17 lines
443 B
Java
|
package com.mosty.yjzl.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.mosty.base.model.entity.yjzl.zddw.TbZdxlFgxlrw;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* @author zhangzhao
|
||
|
* @description 指导巡逻方格巡逻任务表Mapper
|
||
|
* @modifier zhangzhao
|
||
|
* @modifiedTime 2025/05/10 22:04
|
||
|
* @since 2025/05/10 22:04
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface TbZdxlFgxlrwMapper extends BaseMapper<TbZdxlFgxlrw> {
|
||
|
|
||
|
}
|