2023-02-22 15:59:13 +08:00
|
|
|
package com.cnbm.packing.mapper;
|
|
|
|
|
|
|
|
import com.cnbm.common.dao.BaseDao;
|
2023-02-22 20:48:15 +08:00
|
|
|
import com.cnbm.packing.dto.CompensationPowerXSDTO;
|
2023-02-22 15:59:13 +08:00
|
|
|
import com.cnbm.packing.dto.WoCompensationPowerDTO;
|
|
|
|
import com.cnbm.packing.entity.WoCompensationPower;
|
2023-02-22 20:48:15 +08:00
|
|
|
import com.cnbm.packing.param.CompensationQueryParam;
|
2023-02-22 15:59:13 +08:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
2023-02-22 20:48:15 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2023-02-22 15:59:13 +08:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基板补偿功率 表
|
|
|
|
*
|
|
|
|
* @author codeGenerator
|
|
|
|
* @since 2023-02-20
|
|
|
|
*/
|
|
|
|
@Mapper
|
|
|
|
public interface WoCompensationPowerMapper extends BaseDao<WoCompensationPower> {
|
|
|
|
|
|
|
|
List<WoCompensationPowerDTO> list();
|
2023-02-22 20:48:15 +08:00
|
|
|
|
|
|
|
CompensationPowerXSDTO getConffBySubIdAndLineBody(@Param("param") CompensationQueryParam param);
|
2023-02-22 15:59:13 +08:00
|
|
|
}
|