You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
11 months ago
|
package com.zc.business.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.zc.business.domain.DcGantryStatisticsData;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
/**
|
||
|
* 这是一个接口的注释,用于描述门架数据统计的Mapper。
|
||
|
* 它继承了BaseMapper接口,并且指定DcGantryStatisticsData作为映射实体。
|
||
|
*
|
||
|
* @author xiepufeng 这是作者标注,用于指明代码的编写者。
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface DcGantryStatisticsDataMapper extends BaseMapper<DcGantryStatisticsData> {
|
||
|
|
||
|
/**
|
||
|
* 插入或更新门架数据统计。
|
||
|
*
|
||
|
* @param gantryStatisticsData 门架数据统计对象,包含需要插入或更新的数据。
|
||
|
* @return 返回一个布尔值,表示操作是否成功。true表示插入或更新成功,false表示失败。
|
||
|
*/
|
||
|
boolean insertOrUpdate(DcGantryStatisticsData gantryStatisticsData);
|
||
|
|
||
|
/**
|
||
|
* 获取最大的统计日期。
|
||
|
*
|
||
|
* @return 返回最大的统计日期。
|
||
|
*/
|
||
|
Date getMaxStatisticalDate();
|
||
|
}
|
||
|
|