| | |
| | | |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.module.data.point.dto.DaPointDTO; |
| | | import com.iailab.module.data.point.entity.DaPointEntity; |
| | | import com.iailab.module.data.point.vo.DaPointPageReqVO; |
| | | import com.iailab.module.data.point.vo.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @createTime 2024年09月2日 |
| | | */ |
| | | public interface DaPointService{ |
| | | PageResult<DaPointEntity> queryPage(DaPointPageReqVO reqVO); |
| | | PageResult<DaPointDTO> queryPage(DaPointPageReqVO reqVO); |
| | | |
| | | DaPointDTO info(String id); |
| | | |
| | | DaPointDTO getSimpleInfoById(String id); |
| | | |
| | | DaPointDTO getSimpleInfoByNo(String no); |
| | | |
| | | void add(DaPointDTO daPointDTO); |
| | | |
| | | void update(DaPointDTO daPointDTO); |
| | | |
| | | void delete(String[] id); |
| | | |
| | | |
| | | List<DaPointDTO> list(Map<String, Object> params); |
| | | |
| | |
| | | |
| | | List<DaPointDTO> getMathPoint(List<String> pointNos); |
| | | |
| | | List<DaPointDTO> getCumulatePoint(String freq); |
| | | |
| | | List<DaPointDTO> getCumulatePoint(DaPointPageReqVO reqVO); |
| | | |
| | | DaPointDTO getByNo(String pointNo); |
| | | |
| | | List<DaPointDTO> getByNos(List<String> pointNos); |
| | |
| | | |
| | | void updateDefaultValue(DaPointDTO dto); |
| | | |
| | | PointImportRespVO importPointList(List<PointImportExcelVO> importPoints, boolean isUpdateSupport); |
| | | |
| | | List<DaPointDTO> getList(DaPointPageReqVO exportReqVO); |
| | | |
| | | List<DaPointDTO> getConstantPoint(DaPointPageReqVO reqVO); |
| | | |
| | | List<DaPointDTO> getMeasurePoint(DaPointPageReqVO reqVO); |
| | | |
| | | List<DaPointDTO> getMathPoint(DaPointPageReqVO reqVO); |
| | | } |