package com.farriver.bwf.data.transferobject.queryobject.om; import com.farriver.bwf.data.transferobject.queryobject.QueryObjectBase; import java.util.Date; import java.util.List; public class OMOrganizationPositionRoleRelationQueryObject extends QueryObjectBase { private List roleids; private List positionids; public List getRoleids() { return roleids; } public void setRoleids(List roleids) { this.roleids = roleids; } public List getPositionids() { return positionids; } public void setPositionids(List positionids) { this.positionids = positionids; } private String id; private String positionid; private String positioncode; private String positionname; private String roleid; private String rolecode; private String rolename; private Boolean isdeleted; private String remark; private Date createtime; private Date updatetime; public String getId() { return id; } public void setId(String id) { this.id = id == null ? null : id.trim(); } public String getPositionid() { return positionid; } public void setPositionid(String positionid) { this.positionid = positionid == null ? null : positionid.trim(); } public String getPositioncode() { return positioncode; } public void setPositioncode(String positioncode) { this.positioncode = positioncode == null ? null : positioncode.trim(); } public String getPositionname() { return positionname; } public void setPositionname(String positionname) { this.positionname = positionname == null ? null : positionname.trim(); } public String getRoleid() { return roleid; } public void setRoleid(String roleid) { this.roleid = roleid == null ? null : roleid.trim(); } public String getRolecode() { return rolecode; } public void setRolecode(String rolecode) { this.rolecode = rolecode == null ? null : rolecode.trim(); } public String getRolename() { return rolename; } public void setRolename(String rolename) { this.rolename = rolename == null ? null : rolename.trim(); } public Boolean getIsdeleted() { return isdeleted; } public void setIsdeleted(Boolean isdeleted) { this.isdeleted = isdeleted; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark == null ? null : remark.trim(); } public Date getCreatetime() { return createtime; } public void setCreatetime(Date createtime) { this.createtime = createtime; } public Date getUpdatetime() { return updatetime; } public void setUpdatetime(Date updatetime) { this.updatetime = updatetime; } }