package com.zteits.oa.report.domain; public class AsraOpRelations { /**主键*/ private Long id; /**父级ID*/ private Long parentId; /**员工ID*/ private Long opId; /**数据状态:1有效,0无效,2:锁定*/ private Integer dataState; /**获取主键*/ public Long getId() { return id; } /**设置主键*/ public void setId(Long id) { this.id = id; } /**获取父级ID*/ public Long getParentId() { return parentId; } /**设置父级ID*/ public void setParentId(Long parentId) { this.parentId = parentId; } /**获取员工ID*/ public Long getOpId() { return opId; } /**设置员工ID*/ public void setOpId(Long opId) { this.opId = opId; } /**获取数据状态:1有效,0无效,2:锁定*/ public Integer getDataState() { return dataState; } /**设置数据状态:1有效,0无效,2:锁定*/ public void setDataState(Integer dataState) { this.dataState = dataState; } }