package org.jeecg.modules.mdc.vo; import lombok.Data; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import java.util.List; /** * @author Lius * @date 2024/6/12 14:37 */ @Data @XmlAccessorType(XmlAccessType.FIELD) @XmlRootElement(name = "list") public class WsEquipmentUtilizationRateList { @XmlElement(name = "equipment") List list; }