package org.jeecg.modules.iot.entity.xmlEntity.script;
|
|
import lombok.Data;
|
|
import javax.xml.bind.annotation.*;
|
import java.util.List;
|
|
@Data
|
@XmlRootElement(name = "Convert")
|
@XmlType(name = "Convert")
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class ConvertEntity {
|
|
@XmlElement(name = "Function", type = FunctionEntity.class)
|
public List<FunctionEntity> functionList;
|
}
|