package com.by4cloud.platformx.device.entity.vo;
|
|
import com.by4cloud.platformx.device.entity.DeviceDemandPlan;
|
import com.by4cloud.platformx.device.entity.DeviceDemandTotal;
|
import lombok.Data;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName DemandPlanVo.java
|
* @Description TODO
|
* @createTime 2025年03月13日 16:28:00
|
*/
|
@Data
|
public class DemandPlanVo {
|
private DeviceDemandPlan plan;
|
private DeviceDemandTotal total;
|
}
|