2024-07-30 17:24:38 +08:00
|
|
|
package com.whdc.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2024-07-31 17:55:05 +08:00
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.whdc.model.dto.ShPeriodDto;
|
2024-07-30 17:24:38 +08:00
|
|
|
import com.whdc.model.entity.ShPeriod;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
2024-07-31 17:55:05 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2024-07-30 17:24:38 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 描述: 防汛周期
|
|
|
|
|
* author: xusan
|
|
|
|
|
* date: 2024-07-29 17:27:25
|
|
|
|
|
*/
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface ShPeriodMapper extends BaseMapper<ShPeriod> {
|
|
|
|
|
|
2024-07-31 17:55:05 +08:00
|
|
|
IPage<ShPeriod> page(@Param("page") IPage<ShPeriod> page, @Param("dto") ShPeriodDto dto);
|
|
|
|
|
|
2024-07-30 17:24:38 +08:00
|
|
|
}
|