hyingbo
2 天以前 d4d757f2d1a32deecb5e13111d6e753dfa18a58e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.eam.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.eam.entity.RepairWarehouse;
 
import java.util.List;
 
/**
 * @Description: eam_repair_warehouse
 * @Author: jeecg-boot
 * @Date:   2025-09-05
 * @Version: V1.0
 */
public interface RepairWarehouseMapper extends BaseMapper<RepairWarehouse> {
 
    List<String> getColumnDateList(@Param("repairWarehouse") RepairWarehouse repairWarehouse);
}