2025-10-27 15:07:54 +08:00
|
|
|
package com.klp.pocket.service;
|
|
|
|
|
|
2025-10-27 18:07:12 +08:00
|
|
|
import com.klp.common.core.domain.PageQuery;
|
|
|
|
|
import com.klp.common.core.page.TableDataInfo;
|
2025-10-27 15:07:54 +08:00
|
|
|
import com.klp.pocket.domain.Klptcm1ProPlantStateCurrent;
|
|
|
|
|
import java.util.List;
|
2025-10-29 11:53:42 +08:00
|
|
|
import java.util.Date;
|
|
|
|
|
import java.math.BigDecimal;
|
2025-10-27 15:07:54 +08:00
|
|
|
|
|
|
|
|
public interface IKlptcm1ProPlantStateCurrentService {
|
|
|
|
|
|
2025-10-27 18:07:12 +08:00
|
|
|
TableDataInfo<Klptcm1ProPlantStateCurrent> selectAll(PageQuery pageQuery);
|
2025-10-27 15:07:54 +08:00
|
|
|
|
2025-10-29 11:53:42 +08:00
|
|
|
Klptcm1ProPlantStateCurrent selectOne(Date insdate, BigDecimal type);
|
|
|
|
|
|
|
|
|
|
int insert(Klptcm1ProPlantStateCurrent entity);
|
|
|
|
|
|
|
|
|
|
int updateByKey(Klptcm1ProPlantStateCurrent entity);
|
|
|
|
|
|
|
|
|
|
int deleteByKey(Date insdate, BigDecimal type);
|
2025-10-27 15:07:54 +08:00
|
|
|
}
|