package com.klp.pocket.service; import com.klp.common.core.domain.PageQuery; import com.klp.common.core.page.TableDataInfo; import com.klp.pocket.domain.Klptcm1ProPlantStateCurrent; import java.util.List; import java.util.Date; import java.math.BigDecimal; public interface IKlptcm1ProPlantStateCurrentService { TableDataInfo selectAll(PageQuery pageQuery); Klptcm1ProPlantStateCurrent selectOne(Date insdate, BigDecimal type); int insert(Klptcm1ProPlantStateCurrent entity); int updateByKey(Klptcm1ProPlantStateCurrent entity); int deleteByKey(Date insdate, BigDecimal type); }