package com.se.simu.domain;
|
|
import cn.hutool.json.JSONArray;
|
|
import java.util.List;
|
|
/**
|
* SE图层实体类
|
*
|
* @author WWW
|
* @date 2024-09-13
|
*/
|
public class SeLayer {
|
private String id;
|
|
private String name;
|
|
private Integer dataType;
|
|
private List<SeField> fields;
|
|
public SeLayer() {
|
}
|
|
public SeLayer(String id, String name) {
|
this.id = id;
|
this.name = name;
|
}
|
|
public SeLayer(String id, String name, Integer dataType, List<SeField> fields) {
|
this.id = id;
|
this.name = name;
|
this.dataType = dataType;
|
this.fields = fields;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getDataType() {
|
return dataType;
|
}
|
|
public void setDataType(Integer dataType) {
|
this.dataType = dataType;
|
}
|
|
public List<SeField> getFields() {
|
return fields;
|
}
|
|
public void setFields(List<SeField> fields) {
|
this.fields = fields;
|
}
|
}
|