|
|
|
@ -6,6 +6,7 @@ import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
import java.io.Serial; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
@ -75,10 +76,39 @@ public class IotCarbonProductionVarietyDTO implements Serializable { |
|
|
|
public String stepsUrl; |
|
|
|
@Schema(description = "工序拖拉拽json") |
|
|
|
private String stepsJson; |
|
|
|
|
|
|
|
@Schema(description = "模型类型,1实采模型,2填报模型") |
|
|
|
private String modelType; |
|
|
|
@Schema(description = "填报模型开始时间") |
|
|
|
private Date boundaryStartTime; |
|
|
|
@Schema(description = "填报模型结束时间") |
|
|
|
private Date boundaryEndTime; |
|
|
|
@Schema(description = "产品自定义属性信息") |
|
|
|
private List<IotCarbonProductionCustomDTO> customDTOS; |
|
|
|
|
|
|
|
public String getModelType() { |
|
|
|
return modelType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setModelType(String modelType) { |
|
|
|
this.modelType = modelType; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getBoundaryStartTime() { |
|
|
|
return boundaryStartTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBoundaryStartTime(Date boundaryStartTime) { |
|
|
|
this.boundaryStartTime = boundaryStartTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getBoundaryEndTime() { |
|
|
|
return boundaryEndTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBoundaryEndTime(Date boundaryEndTime) { |
|
|
|
this.boundaryEndTime = boundaryEndTime; |
|
|
|
} |
|
|
|
|
|
|
|
public List<IotCarbonProductionCustomDTO> getCustomDTOS() { |
|
|
|
return customDTOS; |
|
|
|
} |
|
|
|
|