MES model修改
parent
5fc11292ea
commit
26fc821d1a
@ -0,0 +1,46 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesArea;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class SysOrganizeModel {
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam(value ="父节点")
|
||||||
|
private Long parentId;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam(value ="名称")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam(value ="子集列表")
|
||||||
|
private List<MesArea> childTreeList;
|
||||||
|
|
||||||
|
public List<MesArea> getChildTreeList() {
|
||||||
|
return childTreeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChildTreeList(List<MesArea> childTreeList) {
|
||||||
|
this.childTreeList = childTreeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getParentId() {
|
||||||
|
return parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setParentId(Long parentId) {
|
||||||
|
this.parentId = parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue