package com.gkhy.safePlatform.account.model.bo;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class GroupInfoPageBO implements Serializable {
|
|
private static final long serialVersionUID = -2962629437121198072L;
|
|
private Long id;
|
|
private String name;
|
|
private String info;
|
|
private Byte status;
|
|
private Date gmtCreate;
|
|
private Date gmtModified;
|
|
private Long createUid;
|
|
private Long editUid;
|
|
private String createBy;
|
|
private String editBy;
|
|
private Long groupStrategyId;
|
|
private Long depId;
|
|
private String department;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getInfo() {
|
return info;
|
}
|
|
public void setInfo(String info) {
|
this.info = info;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(Date gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public Long getEditUid() {
|
return editUid;
|
}
|
|
public void setEditUid(Long editUid) {
|
this.editUid = editUid;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public String getEditBy() {
|
return editBy;
|
}
|
|
public void setEditBy(String editBy) {
|
this.editBy = editBy;
|
}
|
|
public Long getGroupStrategyId() {
|
return groupStrategyId;
|
}
|
|
public void setGroupStrategyId(Long groupStrategyId) {
|
this.groupStrategyId = groupStrategyId;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepartment() {
|
return department;
|
}
|
|
public void setDepartment(String department) {
|
this.department = department;
|
}
|
}
|