package cn.gistack.nky.requestpojo; import cn.gistack.nky.resultpojo.DataResChildrenPo; import lombok.Data; /** * @PROJECT_NAME: skjcmanager * @DESCRIPTION: arima预测请求参数 * @USER: aix * @DATE: 2023/7/31 11:02 */ @Data public class ArimaPredictReqPo { private String damId; private String pointId; private String type; private int number; public ArimaPredictReqPo() {}; public ArimaPredictReqPo(String damId, String pointId, String type) { this.damId = damId; this.pointId = pointId; this.type = type; } public ArimaPredictReqPo (DataResChildrenPo pojo, String type) { this.damId = pojo.getRes_cd(); this.pointId = pojo.getCd(); this.type = type; } }